diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-11-11 06:32:22 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-11-11 06:32:22 (GMT) |
commit | 3d8e776cd932ff79fe181984cacce9ff8bcf3e4c (patch) | |
tree | 14fc5be19139c5b137124010af5effea4cf529a8 /Misc | |
parent | 6f62b5813431161553cf4f89dbe841268c4b3b8e (diff) | |
download | cpython-3d8e776cd932ff79fe181984cacce9ff8bcf3e4c.zip cpython-3d8e776cd932ff79fe181984cacce9ff8bcf3e4c.tar.gz cpython-3d8e776cd932ff79fe181984cacce9ff8bcf3e4c.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
@@ -162,6 +162,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(). |