diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-11-11 06:33:23 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-11-11 06:33:23 (GMT) |
commit | 561cbc4e7bdf457bb64acf8ef7e5358795816c88 (patch) | |
tree | 6a9a8a16fdc9b5f69f1698226abff747cf47385a /Misc | |
parent | a450c5e69ba17bb47e8b3434969218c97cdf1a07 (diff) | |
parent | 3d8e776cd932ff79fe181984cacce9ff8bcf3e4c (diff) | |
download | cpython-561cbc4e7bdf457bb64acf8ef7e5358795816c88.zip cpython-561cbc4e7bdf457bb64acf8ef7e5358795816c88.tar.gz cpython-561cbc4e7bdf457bb64acf8ef7e5358795816c88.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
@@ -83,6 +83,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(). |