diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-11-11 06:34:18 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-11-11 06:34:18 (GMT) |
commit | 099717b73b0b1d0c9dd4aacb91f6932235b799d0 (patch) | |
tree | 7e9f771cd612fb18bd6ad70dc288dda69e057bca /Misc | |
parent | dd0edae1ccef6e0c4ee3338f094ad9d162650360 (diff) | |
parent | 561cbc4e7bdf457bb64acf8ef7e5358795816c88 (diff) | |
download | cpython-099717b73b0b1d0c9dd4aacb91f6932235b799d0.zip cpython-099717b73b0b1d0c9dd4aacb91f6932235b799d0.tar.gz cpython-099717b73b0b1d0c9dd4aacb91f6932235b799d0.tar.bz2 |
Fixes issue #16327: The subprocess module no longer leaks file descriptors
used for stdin/stdout/stderr pipes to the child when fork() fails.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -116,6 +116,9 @@ Core and Builtins Library ------- +- Issue #16327: The subprocess module no longer leaks file descriptors + used for stdin/stdout/stderr pipes to the child when fork() fails. + - Issue #14396: Handle the odd rare case of waitpid returning 0 when not expected in subprocess.Popen.wait(). |