[Python-checkins] queue doc: Clarify that the simple FIFO queue is SimpleQueue (GH-8372)

Miss Islington (bot) webhook-mailer at python.org
Fri Oct 19 18:33:39 EDT 2018


https://github.com/python/cpython/commit/76d31a3b966a618b2a0ee011372f18c992695fee
commit: 76d31a3b966a618b2a0ee011372f18c992695fee
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-10-19T15:33:36-07:00
summary:

queue doc: Clarify that the simple FIFO queue is SimpleQueue (GH-8372)

(cherry picked from commit acef69068f61c9f4141f8509b6a1bfaadab87b5c)

Co-authored-by: Julien Palard <julien at palard.fr>

files:
M Doc/library/queue.rst

diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst
index 1520faa9b83f..7335a64bef84 100644
--- a/Doc/library/queue.rst
+++ b/Doc/library/queue.rst
@@ -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:



More information about the Python-checkins mailing list