summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-11-11 04:34:41 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-11-11 04:34:41 (GMT)
commit0b83224c0ddcb87e2ea139aba5a1e33d70cc9945 (patch)
treeaec24c23dbb98593c9ff738d188564231feb5de3 /Misc
parent9c40022e38ba250c84382e4a4e68a05c0024559d (diff)
parent34b14951eeb235ac0e0cbbd2ccd5d72d178dd983 (diff)
downloadcpython-0b83224c0ddcb87e2ea139aba5a1e33d70cc9945.zip
cpython-0b83224c0ddcb87e2ea139aba5a1e33d70cc9945.tar.gz
cpython-0b83224c0ddcb87e2ea139aba5a1e33d70cc9945.tar.bz2
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6d14ecf..c289cd4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ 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.