diff options
Diffstat (limited to 'Doc/library/threading.rst')
-rw-r--r-- | Doc/library/threading.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 3e2e1e3..7c8f709 100644 --- a/Doc/library/threading.rst +++ b/Doc/library/threading.rst @@ -574,6 +574,12 @@ needs to wake up one consumer thread. interface is then used to restore the recursion level when the lock is reacquired. + The return value is ``True`` unless a given *timeout* expired, in which + case it is ``False``. + + .. versionchanged:: 3.2 + Previously, the method always returned ``None``. + .. method:: notify() Wake up a thread waiting on this condition, if any. If the calling thread |