diff options
author | Gregory P. Smith <greg@krypto.org> | 2011-05-12 05:18:23 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2011-05-12 05:18:23 (GMT) |
commit | c9557af441a2030767cb19bbaba06f57905f41fb (patch) | |
tree | 1142600cdb9c213b9171c9bd8ed5e059e3d24da9 /Misc | |
parent | 79a11e71c69b3862fc930a47bd628e481685f93b (diff) | |
download | cpython-c9557af441a2030767cb19bbaba06f57905f41fb.zip cpython-c9557af441a2030767cb19bbaba06f57905f41fb.tar.gz cpython-c9557af441a2030767cb19bbaba06f57905f41fb.tar.bz2 |
merge - 7a3f3ad83676 Fixes Issue #12044.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |