[Python-checkins] r87828 - python/branches/py3k/Doc/library/queue.rst

antoine.pitrou python-checkins at python.org
Fri Jan 7 20:16:13 CET 2011


Author: antoine.pitrou
Date: Fri Jan  7 20:16:12 2011
New Revision: 87828

Log:
Mention multiprocessing.Queue in the queue docs



Modified:
   python/branches/py3k/Doc/library/queue.rst

Modified: python/branches/py3k/Doc/library/queue.rst
==============================================================================
--- python/branches/py3k/Doc/library/queue.rst	(original)
+++ python/branches/py3k/Doc/library/queue.rst	Fri Jan  7 20:16:12 2011
@@ -19,10 +19,6 @@
 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 @@
 
    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>`


More information about the Python-checkins mailing list