This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author naufraghi
Recipients amaury.forgeotdarc, astrand, gregory.p.smith, jnoller, jyasskin, mattjohnston, mpitt, naufraghi, schmir, timjr
Date 2008-10-17.16:30:21
SpamBayes Score 0.00966708
Marked as misclassified No
Message-id <1224261023.68.0.59836772257.issue1068268@psf.upfronthosting.co.za>
In-reply-to
Content
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,
History
Date User Action Args
2008-10-17 16:30:24naufraghisetrecipients: + naufraghi, gregory.p.smith, astrand, amaury.forgeotdarc, mattjohnston, mpitt, timjr, jyasskin, schmir, jnoller
2008-10-17 16:30:23naufraghisetmessageid: <1224261023.68.0.59836772257.issue1068268@psf.upfronthosting.co.za>
2008-10-17 16:30:23naufraghilinkissue1068268 messages
2008-10-17 16:30:22naufraghicreate