]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
queue doc: Clarify that the simple FIFO queue is SimpleQueue (GH-8372)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 19 Oct 2018 22:33:36 +0000 (15:33 -0700)
committerGitHub <noreply@github.com>
Fri, 19 Oct 2018 22:33:36 +0000 (15:33 -0700)
(cherry picked from commit acef69068f61c9f4141f8509b6a1bfaadab87b5c)

Co-authored-by: Julien Palard <julien@palard.fr>
Doc/library/queue.rst

index 1520faa9b83ff03d0305dba491f34196ae9bd021..7335a64bef84667f26b5456ec2ff349486fb9ca3 100644 (file)
@@ -28,8 +28,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: