diff options
author | Julien Palard <julien@palard.fr> | 2018-10-19 22:27:49 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-10-19 22:27:49 (GMT) |
commit | acef69068f61c9f4141f8509b6a1bfaadab87b5c (patch) | |
tree | 02ef6e8fd6dc7dbc2798b9dde558a9d112cf7bd3 /Doc/library | |
parent | 96200eb2ffcda05de14099cf23f60d5091366e3e (diff) | |
download | cpython-acef69068f61c9f4141f8509b6a1bfaadab87b5c.zip cpython-acef69068f61c9f4141f8509b6a1bfaadab87b5c.tar.gz cpython-acef69068f61c9f4141f8509b6a1bfaadab87b5c.tar.bz2 |
queue doc: Clarify that the simple FIFO queue is SimpleQueue (GH-8372)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/queue.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index 6106d0c..1fea86b 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -26,8 +26,8 @@ competing threads; however, they are not designed to handle reentrancy within a thread. In addition, the module implements a "simple" -:abbr:`FIFO (first-in, first-out)` queue type where -specific implementations can provide additional guarantees +:abbr:`FIFO (first-in, first-out)` queue type, :class:`SimpleQueue`, whose +specific implementation provides additional guarantees in exchange for the smaller functionality. The :mod:`queue` module defines the following classes and exceptions: |