diff options
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/_thread.rst | 4 | ||||
-rw-r--r-- | Doc/library/threading.rst | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/_thread.rst b/Doc/library/_thread.rst index c087c75..369e9cd 100644 --- a/Doc/library/_thread.rst +++ b/Doc/library/_thread.rst @@ -137,6 +137,10 @@ Lock objects have the following methods: .. versionchanged:: 3.2 The *timeout* parameter is new. + .. versionchanged:: 3.2 + Lock acquires can now be interrupted by signals on POSIX. + + .. method:: lock.release() Releases the lock. The lock must have been acquired earlier, but not 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 @@ All methods are executed atomically. .. versionchanged:: 3.2 The *timeout* parameter is new. + .. versionchanged:: 3.2 + Lock acquires can now be interrupted by signals on POSIX. + .. method:: Lock.release() |