From: Gregory P. Smith Date: Sun, 11 Nov 2012 04:34:41 +0000 (-0800) Subject: Fixes issue #9535: Fix pending signals that have been received but not X-Git-Tag: v3.4.0a1~2038 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b83224c0ddcb87e2ea139aba5a1e33d70cc9945;p=thirdparty%2FPython%2Fcpython.git Fixes issue #9535: Fix pending signals that have been received but not yet handled by Python to not persist after os.fork() in the child process. --- 0b83224c0ddcb87e2ea139aba5a1e33d70cc9945 diff --cc Misc/NEWS index 6d14ecf6012d,44e0da20cfde..c289cd47793d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -12,9 +10,12 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #9535: Fix pending signals that have been received but not yet + handled by Python to not persist after os.fork() in the child process. + +- Issue #14794: Fix slice.indices to return correct results for huge values, + rather than raising OverflowError. + - Issue #15001: fix segfault on "del sys.module['__main__']". Patch by Victor Stinner.