commit | 810023db3e91c18f428e27378d00c3a5a56330c6 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Dec 15 22:59:16 2010 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Dec 15 22:59:16 2010 +0000 |
tree | 98b7710d8855ccbed5d84e6d64ff617fe7e53570 | |
parent | 119cda0fd25561c2a21212c80f211af966104297 [diff] [blame] |
Issue #8844: Regular and recursive lock acquisitions can now be interrupted by signals on platforms using pthreads. Patch by Reid Kleckner.
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 282d705..371ac90 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst
@@ -408,6 +408,9 @@ .. versionchanged:: 3.2 The *timeout* parameter is new. + .. versionchanged:: 3.2 + Lock acquires can now be interrupted by signals on POSIX. + .. method:: Lock.release()