[Python-checkins] r87830 - python/branches/py3k/Doc/library/queue.rst
raymond.hettinger
python-checkins at python.org
Fri Jan 7 21:33:09 CET 2011
Author: raymond.hettinger
Date: Fri Jan 7 21:33:09 2011
New Revision: 87830
Log:
Combine the two seealso sections.
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 21:33:09 2011
@@ -60,12 +60,6 @@
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 @@
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>`
More information about the Python-checkins
mailing list