Commit fc90213f authored by Raymond Hettinger's avatar Raymond Hettinger

Combine the two seealso sections.

parent c64708ae
...@@ -60,12 +60,6 @@ The :mod:`queue` module defines the following classes and exceptions: ...@@ -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 Exception raised when non-blocking :meth:`put` (or :meth:`put_nowait`) is called
on a :class:`Queue` object which is full. 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: .. _queueobjects:
...@@ -183,5 +177,9 @@ Example of how to wait for enqueued tasks to be completed:: ...@@ -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) A queue class for use in a multi-processing (rather than multi-threading)
context. 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 Latest version of the :source:`queue module Python source code
<Lib/queue.py>` <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