[Python-checkins] r87597 - python/branches/release27-maint/Doc/library/threading.rst

terry.reedy python-checkins at python.org
Sat Jan 1 01:36:18 CET 2011


Author: terry.reedy
Date: Sat Jan  1 01:36:18 2011
New Revision: 87597

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


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

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


More information about the Python-checkins mailing list