Add cross-reference to the collections docs.

This commit is contained in:
Raymond Hettinger 2009-03-09 12:54:35 +00:00
parent fa007965c8
commit 1d7f4b285f
1 changed files with 6 additions and 0 deletions

View File

@ -61,6 +61,12 @@ 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: