summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerry Reedy <tjreedy@udel.edu>2011-01-01 00:36:18 +0000
committerTerry Reedy <tjreedy@udel.edu>2011-01-01 00:36:18 +0000
commitc0b3544268e962d811c890645fb74118a3143be2 (patch)
tree99ae5408f27768c8308b83c3e3b369c80821ee7e
parentc45d7996dbeb49e3fc07a0ab47380b7ec6f834a1 (diff)
downloadcpython-git-c0b3544268e962d811c890645fb74118a3143be2.tar.gz
Issue 10789: Correct threading.Lock.acquire signature.
-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 cd3f96369d..142f1ec3c0 100644
--- a/Doc/library/threading.rst
+++ b/Doc/library/threading.rst
@@ -388,7 +388,7 @@ and may vary across implementations.
All methods are executed atomically.
-.. method:: Lock.acquire([blocking=1])
+.. method:: Lock.acquire([blocking])
Acquire a lock, blocking or non-blocking.