mirror of
https://github.com/python/cpython.git
synced 2025-10-03 13:45:29 +00:00
Add cross-reference to the collections docs.
This commit is contained in:
parent
fb30cca591
commit
e1bfcfac2d
1 changed files with 6 additions and 0 deletions
|
@ -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
|
Exception raised when non-blocking :meth:`put` (or :meth:`put_nowait`) is called
|
||||||
on a :class:`Queue` object which is full.
|
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:
|
.. _queueobjects:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue