From: Raymond Hettinger Date: Mon, 9 Mar 2009 12:57:55 +0000 (+0000) Subject: Add cross-reference to the collections docs. X-Git-Tag: v2.6.2c1~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1bfcfac2d9e1522065eac15e1cc6b1b07c0852d;p=thirdparty%2FPython%2Fcpython.git Add cross-reference to the collections docs. --- diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index 6ee97029abeb..0508fcb6047d 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -66,6 +66,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: