Message75419
The bug should be fixed in Python 2.5 since it uses:
while read_set or write_set:
try:
rlist, wlist, xlist = select.select(read_set, write_set,
[])
except select.error, e:
if e[0] == errno.EINTR:
continue
else:
raise
EINTR is supported in subprocess for select(), read(), write() and
waitpid()
Can't you migrate to Python 2.5 or 2.6? You can try to copy
subprocess.py from Python 2.5 to Python 2.4. |
|
Date |
User |
Action |
Args |
2008-10-31 15:35:30 | vstinner | set | recipients:
+ vstinner, belopolsky, amy20_z |
2008-10-31 15:35:30 | vstinner | set | messageid: <1225467330.43.0.803830531247.issue4216@psf.upfronthosting.co.za> |
2008-10-31 15:35:29 | vstinner | link | issue4216 messages |
2008-10-31 15:35:29 | vstinner | create | |
|