summaryrefslogtreecommitdiffstats
path: root/Lib/test/subprocessdata/fd_status.py
Commit message (Collapse)AuthorAgeFilesLines
* 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. ........
* 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.