[Python-checkins] r87596 - python/branches/release31-maint/Doc/library/threading.rst

terry.reedy python-checkins at python.org
Sat Jan 1 01:29:59 CET 2011


Author: terry.reedy
Date: Sat Jan  1 01:29:59 2011
New Revision: 87596

Log:
Issue 10789: Correct threading.Lock.acquire signature.


Modified:
   python/branches/release31-maint/Doc/library/threading.rst

Modified: python/branches/release31-maint/Doc/library/threading.rst
==============================================================================
--- python/branches/release31-maint/Doc/library/threading.rst	(original)
+++ python/branches/release31-maint/Doc/library/threading.rst	Sat Jan  1 01:29:59 2011
@@ -365,7 +365,7 @@
 All methods are executed atomically.
 
 
-.. method:: Lock.acquire(blocking=True)
+.. method:: Lock.acquire([blocking])
 
    Acquire a lock, blocking or non-blocking.
 


More information about the Python-checkins mailing list