From: Sandro Tosi Date: Fri, 6 Apr 2012 09:15:06 +0000 (+0200) Subject: Issue #14502: it's RuntimeError on 3.3 X-Git-Tag: v3.3.0a3~294^2~5^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3be68e0a824d165c37c899ad9674918a870dc45;p=python Issue #14502: it's RuntimeError on 3.3 --- diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 955fce2789..d2727319dc 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.