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 vstinner
Recipients amy20_z, belopolsky, vstinner
Date 2008-10-31.15:35:28
SpamBayes Score 1.7103735e-05
Marked as misclassified No
Message-id <1225467330.43.0.803830531247.issue4216@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2008-10-31 15:35:30vstinnersetrecipients: + vstinner, belopolsky, amy20_z
2008-10-31 15:35:30vstinnersetmessageid: <1225467330.43.0.803830531247.issue4216@psf.upfronthosting.co.za>
2008-10-31 15:35:29vstinnerlinkissue4216 messages
2008-10-31 15:35:29vstinnercreate