From 696efdd03f40d5a135961af54946b56028b323bd Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Fri, 7 Jan 2011 19:16:12 +0000 Subject: Mention multiprocessing.Queue in the queue docs --- Doc/library/queue.rst | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index 424998e..8a767c6 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -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 - ` 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 + ` -- cgit v0.12