#10218: return timeout status from Condition.wait, mirroring other primitives' behavior.
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 @@
       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