summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-28 10:43:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-28 10:43:08 (GMT)
commitab900c21fcfb08f13467d1c6f47d03ab90180f89 (patch)
treed2585129064d0de2bdb03aec77e790e89305de40 /Misc
parentfdde79dbf6ae6d1d3b15770a2e87a5108197d826 (diff)
downloadcpython-ab900c21fcfb08f13467d1c6f47d03ab90180f89.zip
cpython-ab900c21fcfb08f13467d1c6f47d03ab90180f89.tar.gz
cpython-ab900c21fcfb08f13467d1c6f47d03ab90180f89.tar.bz2
Issue #21619: Popen objects no longer leave a zombie after exit in the with
statement if the pipe was broken. Patch by Martin Panter.
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 8888f79..05fde70 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #21619: Popen objects no longer leave a zombie after exit in the with
+ statement if the pipe was broken. Patch by Martin Panter.
+
- Issue #6639: Module-level turtle functions no longer raise TclError after
closing the window.