Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa00796 commit 1d7f4b2Copy full SHA for 1d7f4b2
1 file changed
Doc/library/queue.rst
@@ -61,6 +61,12 @@ The :mod:`queue` module defines the following classes and exceptions:
61
Exception raised when non-blocking :meth:`put` (or :meth:`put_nowait`) is called
62
on a :class:`Queue` object which is full.
63
64
+.. seealso::
65
+
66
+ :class:`collections.deque` is an alternative implementation of unbounded
67
+ queues with fast atomic :func:`append` and :func:`popleft` operations that
68
+ do not require locking.
69
70
71
.. _queueobjects:
72
0 commit comments