summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-11-11 04:38:17 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-11-11 04:38:17 (GMT)
commitc1ce93a4ab0c6e1ed5e7e013789a669871b2257d (patch)
tree7b0cc40c663fac25a2954520c35c6cf24323837e /Misc
parentacfdfdafa202b634bc9f9ca5d3aa52e0aeb04e73 (diff)
downloadcpython-c1ce93a4ab0c6e1ed5e7e013789a669871b2257d.zip
cpython-c1ce93a4ab0c6e1ed5e7e013789a669871b2257d.tar.gz
cpython-c1ce93a4ab0c6e1ed5e7e013789a669871b2257d.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 a4a4105..a670e20 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,9 @@ What's New in Python 2.7.4
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 #15001: fix segfault on "del sys.modules['__main__']". Patch by Victor
Stinner.