summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-04-05 20:53:21 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2012-04-05 20:53:21 (GMT)
commit5d1c2f07022f7a14381dbc8f6c7e3a1efd5a318b (patch)
tree7edcc1f43761dd8241503ab4f1e0581fb31b1eb9 /Doc
parent02184282c7b6f68f905a08670b93862662bf4397 (diff)
downloadcpython-5d1c2f07022f7a14381dbc8f6c7e3a1efd5a318b.zip
cpython-5d1c2f07022f7a14381dbc8f6c7e3a1efd5a318b.tar.gz
cpython-5d1c2f07022f7a14381dbc8f6c7e3a1efd5a318b.tar.bz2
Issue #14502: merge with 3.2
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/threading.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst
index 7527bc5..d272731 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -452,7 +452,7 @@ All methods are executed atomically.
are blocked waiting for the lock to become unlocked, allow exactly one of them
to proceed.
- Do not call this method when the lock is unlocked.
+ When invoked on an unlocked lock, a :exc:`RuntimeError` is raised.
There is no return value.