Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #10826: Prevent sporadic failure in test_subprocess on Solaris due | Antoine Pitrou | 2011-02-21 | 1 | -12/+12 |
| | | | | to open door files. | ||||
* | SIGCHLD is a more portable name than SIGCLD. (OSX has no SIGCLD) | Gregory P. Smith | 2010-12-14 | 1 | -1/+1 |
| | |||||
* | Issue #1731717: Fixed the problem where subprocess.wait() could cause an | Gregory P. Smith | 2010-12-14 | 1 | -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 as | Barry Warsaw | 2010-12-13 | 1 | -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 from | Gregory P. Smith | 2010-12-13 | 4 | -0/+48 |
the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors. |