summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata
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.
* Merged revisions 88484 via svnmerge fromAntoine Pitrou2011-02-211-12/+12
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88484 | antoine.pitrou | 2011-02-21 22:55:48 +0100 (lun., 21 févr. 2011) | 4 lines Issue #10826: Prevent sporadic failure in test_subprocess on Solaris due to open door files. ........
* 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.
* Issue 10687. When --without-pymalloc is given, $VERSION is the same asBarry Warsaw2010-12-131-1/+1
| | | | | | | $LDVERSION, which screws up the sym/hard-links. This avoids those games when $VERSION == $LDVERSION. Also, include a drive-by fix for an obvious syntax error.
* issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag fromGregory P. Smith2010-12-134-0/+48
the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors.