[Python-checkins] r70289 - python/branches/release26-maint/Doc/library/queue.rst

raymond.hettinger python-checkins at python.org
Tue Mar 10 01:11:32 CET 2009


Author: raymond.hettinger
Date: Tue Mar 10 01:11:32 2009
New Revision: 70289

Log:
Fix markup.

Modified:
   python/branches/release26-maint/Doc/library/queue.rst

Modified: python/branches/release26-maint/Doc/library/queue.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/queue.rst	(original)
+++ python/branches/release26-maint/Doc/library/queue.rst	Tue Mar 10 01:11:32 2009
@@ -168,7 +168,7 @@
    The count of unfinished tasks goes up whenever an item is added to the queue.
    The count goes down whenever a consumer thread calls :meth:`task_done` to
    indicate that the item was retrieved and all work on it is complete. When the
-   count of unfinished tasks drops to zero, join() unblocks.
+   count of unfinished tasks drops to zero, :meth:`join` unblocks.
 
    .. versionadded:: 2.5
 


More information about the Python-checkins mailing list