diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-07 20:33:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-07 20:33:09 (GMT) |
commit | fc90213f537b035beb6634498e3663f24709c3ab (patch) | |
tree | fca25f23b4a85b1838cf47bf8afef238ddb2aa97 | |
parent | c64708ae48d07ac906ae29e7ac19a6173a9926df (diff) | |
download | cpython-fc90213f537b035beb6634498e3663f24709c3ab.zip cpython-fc90213f537b035beb6634498e3663f24709c3ab.tar.gz cpython-fc90213f537b035beb6634498e3663f24709c3ab.tar.bz2 |
Combine the two seealso sections.
-rw-r--r-- | Doc/library/queue.rst | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index 8a767c6..2373929 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -60,12 +60,6 @@ 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: @@ -183,5 +177,9 @@ Example of how to wait for enqueued tasks to be completed:: 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>` |