diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-12-14 13:43:30 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-12-14 13:43:30 (GMT) |
commit | 8edd99d0852c45f70b6abc851e6b326d4250cd33 (patch) | |
tree | 739c5f3039791b749228455076e6af2d89d71b8c /Misc | |
parent | 39f34aa1f3c1f02d72ec28d0d177834e22dfc89b (diff) | |
download | cpython-8edd99d0852c45f70b6abc851e6b326d4250cd33.zip cpython-8edd99d0852c45f70b6abc851e6b326d4250cd33.tar.gz cpython-8edd99d0852c45f70b6abc851e6b326d4250cd33.tar.bz2 |
Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest.
Issue #7213: Change the close_fds default on Windows to better match the new
default on POSIX. True when possible (False if stdin/stdout/stderr are
supplied).
Update the documentation to reflect all of the above.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -23,8 +23,12 @@ Library - Issue #10107: Warn about unsaved files in IDLE on OSX. - Issue #7213: subprocess.Popen's default for close_fds has been changed. - It is now platform specific, keeping its default of False on Windows and - changing the default to True on POSIX and other platforms. + It is now True in most cases other than on Windows when input, output or + error handles are provided. + +- Issue #6559: subprocess.Popen has a new pass_fds parameter (actually + added in 3.2beta1) to allow specifying a specific list of file descriptors + to keep open in the child process. What's New in Python 3.2 Beta 1? |