diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-11-11 04:33:39 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-11-11 04:33:39 (GMT) |
commit | 34b14951eeb235ac0e0cbbd2ccd5d72d178dd983 (patch) | |
tree | 89af57c899c0ed161adbcc0fe3374d68d1ce9f69 /Misc | |
parent | ec6dfcffa05414e7ee29cfe88551a3d3dcdaafdc (diff) | |
parent | 9463e3ac8b230efa2f35e08859cb3db5c6d192b7 (diff) | |
download | cpython-34b14951eeb235ac0e0cbbd2ccd5d72d178dd983.zip cpython-34b14951eeb235ac0e0cbbd2ccd5d72d178dd983.tar.gz cpython-34b14951eeb235ac0e0cbbd2ccd5d72d178dd983.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
@@ -12,6 +12,9 @@ What's New in Python 3.3.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 #15001: fix segfault on "del sys.module['__main__']". Patch by Victor Stinner. |