]> granicus.if.org Git - python/commitdiff
Combine the two seealso sections.
authorRaymond Hettinger <python@rcn.com>
Fri, 7 Jan 2011 20:33:09 +0000 (20:33 +0000)
committerRaymond Hettinger <python@rcn.com>
Fri, 7 Jan 2011 20:33:09 +0000 (20:33 +0000)
Doc/library/queue.rst

index 8a767c67349f12355ee25c26e72c97277eb4e7ea..23739299f5e3081b36e41faae3bbfc35ff98493e 100644 (file)
@@ -60,12 +60,6 @@ The :mod:`queue` module defines the following classes and exceptions:
    Exception raised when non-blocking :meth:`put` (or :meth:`put_nowait`) is called
    on a :class:`Queue` object which is full.
 
-.. seealso::
-
-   :class:`collections.deque` is an alternative implementation of unbounded
-   queues with fast atomic :func:`append` and :func:`popleft` operations that
-   do not require locking.
-
 
 .. _queueobjects:
 
@@ -183,5 +177,9 @@ Example of how to wait for enqueued tasks to be completed::
       A queue class for use in a multi-processing (rather than multi-threading)
       context.
 
+  :class:`collections.deque` is an alternative implementation of unbounded
+   queues with fast atomic :func:`append` and :func:`popleft` operations that
+   do not require locking.
+
    Latest version of the :source:`queue module Python source code
    <Lib/queue.py>`