summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-04-18 14:25:56 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-04-18 14:25:56 (GMT)
commit6c9b35bfe2585af08ea6480294e096e2d2397fe3 (patch)
tree6ff03bbd64937ea055f5db49b505238c02cbb5a3 /Misc/NEWS
parent340bb95ffd9c0947a7f6ac7f4520efada7204bc0 (diff)
downloadcpython-6c9b35bfe2585af08ea6480294e096e2d2397fe3.zip
cpython-6c9b35bfe2585af08ea6480294e096e2d2397fe3.tar.gz
cpython-6c9b35bfe2585af08ea6480294e096e2d2397fe3.tar.bz2
Issue #11768: The signal handler of the signal module only calls
Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c424e1e..022ad20 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -55,6 +55,10 @@ Core and Builtins
Library
-------
+- Issue #11768: The signal handler of the signal module only calls
+ Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or
+ parallel calls. PyErr_SetInterrupt() writes also into the wake up file.
+
- Issue #11467: Fix urlparse behavior when handling urls which contains scheme
specific part only digits. Patch by Santoso Wijaya.