Commit 696efdd0 authored by Antoine Pitrou's avatar Antoine Pitrou

Mention multiprocessing.Queue in the queue docs

parent 4b512f73
......@@ -19,10 +19,6 @@ the first retrieved (operating like a stack). With a priority queue,
the entries are kept sorted (using the :mod:`heapq` module) and the
lowest valued entry is retrieved first.
.. seealso::
Latest version of the :source:`queue module Python source code
<Lib/queue.py>`
The :mod:`queue` module defines the following classes and exceptions:
......@@ -180,3 +176,12 @@ Example of how to wait for enqueued tasks to be completed::
q.join() # block until all tasks are done
.. seealso::
Class :class:`multiprocessing.Queue`
A queue class for use in a multi-processing (rather than multi-threading)
context.
Latest version of the :source:`queue module Python source code
<Lib/queue.py>`
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment