Commit 1d7f4b28 authored by Raymond Hettinger's avatar Raymond Hettinger

Add cross-reference to the collections docs.

parent fa007965
......@@ -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:
......
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