From: Raymond Hettinger Date: Tue, 10 Mar 2009 00:10:10 +0000 (+0000) Subject: Fix markup. X-Git-Tag: 3.0~325 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a296864f9cd0ed3ecb43a4f833723da6980ce93;p=thirdparty%2FPython%2Fcpython.git Fix markup. --- diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index b6b009b668f2..ac1a48d16137 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -155,7 +155,7 @@ fully processed by daemon consumer threads. 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. Example of how to wait for enqueued tasks to be completed::