summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-04-18 14:30:17 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-04-18 14:30:17 (GMT)
commitce16be91dc68597b0c5bfc7b4b1c5136fe5697a6 (patch)
tree5d91e3854a67afbb2a7760b3d541cc2c3331db56 /Misc
parentf3299989a213f8e2f174defc1174ab2acf8ec322 (diff)
parent27026f87d8aba31c3aa5529971508a91017486f5 (diff)
downloadcpython-ce16be91dc68597b0c5bfc7b4b1c5136fe5697a6.zip
cpython-ce16be91dc68597b0c5bfc7b4b1c5136fe5697a6.tar.gz
cpython-ce16be91dc68597b0c5bfc7b4b1c5136fe5697a6.tar.bz2
(Merge 3.2) 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')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 726991a..3481960 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -110,6 +110,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 #11492: fix several issues with header folding in the email package.
- Issue #11852: Add missing imports and update tests.