diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-11-11 04:33:07 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-11-11 04:33:07 (GMT) |
commit | 9463e3ac8b230efa2f35e08859cb3db5c6d192b7 (patch) | |
tree | 5949203b8d12a797626fb444ca4ec8b98006a72a /Misc | |
parent | 7ee955550b27af117ddca61deb061e13423cf24b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |