summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-12-15 22:59:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-12-15 22:59:16 (GMT)
commit810023db3e91c18f428e27378d00c3a5a56330c6 (patch)
tree98b7710d8855ccbed5d84e6d64ff617fe7e53570 /Misc
parent119cda0fd25561c2a21212c80f211af966104297 (diff)
downloadcpython-810023db3e91c18f428e27378d00c3a5a56330c6.zip
cpython-810023db3e91c18f428e27378d00c3a5a56330c6.tar.gz
cpython-810023db3e91c18f428e27378d00c3a5a56330c6.tar.bz2
Issue #8844: Regular and recursive lock acquisitions can now be interrupted
by signals on platforms using pthreads. Patch by Reid Kleckner.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 5dfb8da..29afd59 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -454,6 +454,7 @@ Paul Kippes
Steve Kirsch
Sebastian Kirsche
Ron Klatchko
+Reid Kleckner
Bastian Kleineidam
Bob Kline
Matthias Klose
diff --git a/Misc/NEWS b/Misc/NEWS
index 817c2de..f2a22b1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2 Beta 2?
Core and Builtins
-----------------
+- Issue #8844: Regular and recursive lock acquisitions can now be interrupted
+ by signals on platforms using pthreads. Patch by Reid Kleckner.
+
- Issue #4236: PyModule_Create2 now checks the import machinery directly
rather than the Py_IsInitialized flag, avoiding a Fatal Python
error in certain circumstances when an import is done in __del__.