diff options
Diffstat (limited to 'Doc/library/queue.rst')
-rw-r--r-- | Doc/library/queue.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index e3596bb..bc3821e 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -4,6 +4,7 @@ .. module:: queue :synopsis: A synchronized queue class. +**Source code:** :source:`Lib/queue.py` The :mod:`queue` module implements multi-producer, multi-consumer queues. It is especially useful in threaded programming when information must be @@ -181,5 +182,3 @@ Example of how to wait for enqueued tasks to be completed:: 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>` |