From: Victor Stinner Date: Sun, 15 May 2011 08:27:09 +0000 (+0200) Subject: (Merge 3.1) Issue #12060: Use sig_atomic_t type and volatile keyword in the X-Git-Tag: v3.2.1rc1~4^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ebfe6d9a96beaa190e803259ffd05abe8786e14;p=thirdparty%2FPython%2Fcpython.git (Merge 3.1) Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. Patch written by Charles-François Natali. --- 5ebfe6d9a96beaa190e803259ffd05abe8786e14 diff --cc Misc/NEWS index fd7bc4cfe348,c41e475cc94c..a46497d39fdd --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,10 -10,9 +10,13 @@@ What's New in Python 3.2.1 beta 1 Core and Builtins ----------------- + - Issue #12060: Use sig_atomic_t type and volatile keyword in the signal + module. Patch written by Charles-François Natali. + +- 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.