From: Victor Stinner Date: Sun, 15 May 2011 08:27:49 +0000 (+0200) Subject: (Merge 3.2) Issue #12060: Use sig_atomic_t type and volatile keyword in the X-Git-Tag: v3.3.0a1~2267 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aedb2823fd740dcdf64744d47eab0053324741b1;p=python (Merge 3.2) Issue #12060: Use sig_atomic_t type and volatile keyword in the signal module. Patch written by Charles-François Natali. --- aedb2823fd740dcdf64744d47eab0053324741b1 diff --cc Misc/NEWS index c8d15eccf1,a46497d39f..04c4fbcf98 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -10,9 +10,12 @@@ What's New in Python 3.3 Alpha 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. + +- Added the if_nameindex, if_indextoname, if_nametoindex methods to + the socket module as requested in issue #1746656. + - 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.