summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata/sigchild_ignore.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixes issue #15756: subprocess.poll() now properly handles errno.ECHILDGregory P. Smith2012-09-291-1/+10
| | | | | to 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
|
* Issue #1731717: Fixed the problem where subprocess.wait() could cause anGregory P. Smith2010-12-141-0/+6
OSError exception when The OS had been told to ignore SIGCLD in our process or otherwise not wait for exiting child processes.