Message74924
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, |
|
Date |
User |
Action |
Args |
2008-10-17 16:30:24 | naufraghi | set | recipients:
+ naufraghi, gregory.p.smith, astrand, amaury.forgeotdarc, mattjohnston, mpitt, timjr, jyasskin, schmir, jnoller |
2008-10-17 16:30:23 | naufraghi | set | messageid: <1224261023.68.0.59836772257.issue1068268@psf.upfronthosting.co.za> |
2008-10-17 16:30:23 | naufraghi | link | issue1068268 messages |
2008-10-17 16:30:22 | naufraghi | create | |
|