summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2011-05-12 05:18:23 (GMT)
committerGregory P. Smith <greg@krypto.org>2011-05-12 05:18:23 (GMT)
commitc9557af441a2030767cb19bbaba06f57905f41fb (patch)
tree1142600cdb9c213b9171c9bd8ed5e059e3d24da9 /Misc
parent79a11e71c69b3862fc930a47bd628e481685f93b (diff)
downloadcpython-c9557af441a2030767cb19bbaba06f57905f41fb.zip
cpython-c9557af441a2030767cb19bbaba06f57905f41fb.tar.gz
cpython-c9557af441a2030767cb19bbaba06f57905f41fb.tar.bz2
merge - 7a3f3ad83676 Fixes Issue #12044.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b8b65d2..de0ce38 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2.1?
Core and Builtins
-----------------
+- Issue #12044: Fixed subprocess.Popen when used as a context manager to
+ wait for the process to end when exiting the context to avoid unintentionally
+ leaving zombie processes around.
+
- Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c,
clear the end-of-file indicator after CTRL+d.