Matteo Bertini <[EMAIL PROTECTED]> added the comment:
Ups, forgot a _no_intr around select.select
Index: subprocess.py
===================================================================
--- subprocess.py (revisione 19645)
+++ subprocess.py (copia locale)
@@ -1178,7 +1178,7 @@
input_offset = 0
while read_set or write_set:
- rlist, wlist, xlist = select.select(read_set,
write_set, [])
+ rlist, wlist, xlist = _no_intr(select.select)(read_set,
write_set, [])
if self.stdin in wlist:
# When select has indicated that the file is
writable,
_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1068268>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com