diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-10 00:07:25 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-10 00:07:25 (GMT) |
commit | 28c013dcb464346b7fbefd73ad3cd35c66f98ae3 (patch) | |
tree | e16d22d3f69778918cdb7d3d38866366199178bb /Doc | |
parent | 10745a98be39f4ca9f64bed47409e3ab78ad9211 (diff) | |
download | cpython-28c013dcb464346b7fbefd73ad3cd35c66f98ae3.zip cpython-28c013dcb464346b7fbefd73ad3cd35c66f98ae3.tar.gz cpython-28c013dcb464346b7fbefd73ad3cd35c66f98ae3.tar.bz2 |
Fix markup.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/queue.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index e127af2..e16d6e9 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:: |