[Python-checkins] r70270 - python/branches/release30-maint/Doc/library/queue.rst

raymond.hettinger python-checkins at python.org
Mon Mar 9 13:55:53 CET 2009


Author: raymond.hettinger
Date: Mon Mar  9 13:55:52 2009
New Revision: 70270

Log:
Add cross-reference to the collections docs.

Modified:
   python/branches/release30-maint/Doc/library/queue.rst

Modified: python/branches/release30-maint/Doc/library/queue.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/queue.rst	(original)
+++ python/branches/release30-maint/Doc/library/queue.rst	Mon Mar  9 13:55:52 2009
@@ -61,6 +61,12 @@
    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:
 


More information about the Python-checkins mailing list