]> granicus.if.org Git - python/commitdiff
queue doc: Clarify that the simple FIFO queue is SimpleQueue (GH-8372)
authorJulien Palard <julien@palard.fr>
Fri, 19 Oct 2018 22:27:49 +0000 (00:27 +0200)
committerVictor Stinner <vstinner@redhat.com>
Fri, 19 Oct 2018 22:27:49 +0000 (00:27 +0200)
Doc/library/queue.rst

index 6106d0cd381fceacb0ea20670da6f028b214ba4d..1fea86bfc5cd891c8a4b3cae7cc78924a0ae3cdd 100644 (file)
@@ -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: