[Python-checkins] cpython (3.2): Improve the grammar of a non-sentence.

r.david.murray python-checkins at python.org
Wed May 9 03:29:53 CEST 2012


http://hg.python.org/cpython/rev/597826f7f6f5
changeset:   76842:597826f7f6f5
branch:      3.2
parent:      76836:d937b527b76e
user:        R David Murray <rdmurray at bitdance.com>
date:        Tue May 08 21:28:24 2012 -0400
summary:
  Improve the grammar of a non-sentence.

files:
  Doc/library/queue.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst
--- a/Doc/library/queue.rst
+++ b/Doc/library/queue.rst
@@ -15,8 +15,8 @@
 availability of thread support in Python; see the :mod:`threading`
 module.
 
-Implements three types of queue whose only difference is the order that
-the entries are retrieved.  In a FIFO queue, the first tasks added are
+The module implements three types of queue, which differ only in the order in
+which the entries are retrieved.  In a FIFO queue, the first tasks added are
 the first retrieved. In a LIFO queue, the most recently added entry is
 the first retrieved (operating like a stack).  With a priority queue,
 the entries are kept sorted (using the :mod:`heapq` module) and the

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list