summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-11-11 04:33:07 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-11-11 04:33:07 (GMT)
commit9463e3ac8b230efa2f35e08859cb3db5c6d192b7 (patch)
tree5949203b8d12a797626fb444ca4ec8b98006a72a /Misc
parent7ee955550b27af117ddca61deb061e13423cf24b (diff)
downloadcpython-9463e3ac8b230efa2f35e08859cb3db5c6d192b7.zip
cpython-9463e3ac8b230efa2f35e08859cb3db5c6d192b7.tar.gz
cpython-9463e3ac8b230efa2f35e08859cb3db5c6d192b7.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 ab18f03..6a97cbc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.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.module['__main__']". Patch by Victor
Stinner.