summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2012-04-06 09:15:06 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2012-04-06 09:15:06 (GMT)
commitf3be68e0a824d165c37c899ad9674918a870dc45 (patch)
treea3444f5b7cc84dc7f3b93dd67d930f7ac45bdc1a /Doc/library
parent3861a322b9519af98229adc1496b9ecb51a63e25 (diff)
downloadcpython-f3be68e0a824d165c37c899ad9674918a870dc45.zip
cpython-f3be68e0a824d165c37c899ad9674918a870dc45.tar.gz
cpython-f3be68e0a824d165c37c899ad9674918a870dc45.tar.bz2
Issue #14502: it's RuntimeError on 3.3
Diffstat (limited to 'Doc/library')
-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 955fce2..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.
- When invoked on an unlocked lock, a :exc:`ThreadError` is raised.
+ When invoked on an unlocked lock, a :exc:`RuntimeError` is raised.
There is no return value.