summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata/sigchild_ignore.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15756: subprocess.poll() now properly handles errno.ECHILD toGregory P. Smith2012-09-291-1/+10
| | | | | return a returncode of 0 when the child has already exited or cannot be waited on.
* SIGCHLD is a more portable name than SIGCLD (OSX has no SIGCLD).Gregory P. Smith2010-12-141-1/+1
|
* Merged revisions 87233 via svnmerge fromGregory P. Smith2010-12-141-0/+6
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87233 | gregory.p.smith | 2010-12-14 06:38:00 -0800 (Tue, 14 Dec 2010) | 4 lines Issue #1731717: Fixed the problem where subprocess.wait() could cause an OSError exception when The OS had been told to ignore SIGCLD in our process or otherwise not wait for exiting child processes. ........