summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-11-11 06:32:22 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-11-11 06:32:22 (GMT)
commit3d8e776cd932ff79fe181984cacce9ff8bcf3e4c (patch)
tree14fc5be19139c5b137124010af5effea4cf529a8 /Misc
parent6f62b5813431161553cf4f89dbe841268c4b3b8e (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a4175e7..16bfb30 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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().