summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata/input_reader.py
Commit message (Collapse)AuthorAgeFilesLines
* 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-131-0/+7
the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors.