From: Sandro Tosi Date: Thu, 5 Apr 2012 20:53:21 +0000 (+0200) Subject: Issue #14502: merge with 3.2 X-Git-Tag: v3.3.0a3~297 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d1c2f07022f7a14381dbc8f6c7e3a1efd5a318b;p=thirdparty%2FPython%2Fcpython.git Issue #14502: merge with 3.2 --- diff --git a/Doc/library/threading.rst b/Doc/library/threading.rst index 7527bc5e862a..d2727319dca7 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.