summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata/fd_status.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18571: Merge duplicate test codeVictor Stinner2013-09-011-7/+16
| | | | Merge test/subprocessdata/inherited.py into test/subprocessdata/fd_status.py
* Use new new stat.S_ISDOOR() function, instead of hardcoded maskVictor Stinner2013-08-211-1/+2
|
* Issue #10826: Prevent sporadic failure in test_subprocess on Solaris dueAntoine Pitrou2011-02-211-12/+12
| | | | to open door files.
* issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag fromGregory P. Smith2010-12-131-0/+24
the C code, using pipe2() when available. Adds unittests for close_fds and cloexec behaviors.