summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorOwain Davies <116417456+OTheDev@users.noreply.github.com>2023-02-22 20:21:38 (GMT)
committerGitHub <noreply@github.com>2023-02-22 20:21:38 (GMT)
commit96bf24380e44dfa1516d65480250995e737c0cb9 (patch)
treeda7c944d4f103c062cfc4b170c94bc404021a9ab /Doc/library
parent592f65fdb551f64a2db7849500e5df2291637f25 (diff)
downloadcpython-96bf24380e44dfa1516d65480250995e737c0cb9.zip
cpython-96bf24380e44dfa1516d65480250995e737c0cb9.tar.gz
cpython-96bf24380e44dfa1516d65480250995e737c0cb9.tar.bz2
GH-101777: `queue.rst`: use 2 spaces after a period to be consistent. (#102143)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/queue.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst
index 46b8e9b..b2b787c 100644
--- a/Doc/library/queue.rst
+++ b/Doc/library/queue.rst
@@ -15,7 +15,7 @@ module implements all the required locking semantics.
The module implements three types of queue, which differ only in the order in
which the entries are retrieved. In a :abbr:`FIFO (first-in, first-out)`
-queue, the first tasks added are the first retrieved. In a
+queue, the first tasks added are the first retrieved. In a
:abbr:`LIFO (last-in, first-out)` 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
@@ -57,7 +57,7 @@ The :mod:`queue` module defines the following classes and exceptions:
*maxsize* is less than or equal to zero, the queue size is infinite.
The lowest valued entries are retrieved first (the lowest valued entry is the
- one that would be returned by ``min(entries)``). A typical pattern for
+ one that would be returned by ``min(entries)``). A typical pattern for
entries is a tuple in the form: ``(priority_number, data)``.
If the *data* elements are not comparable, the data can be wrapped in a class
@@ -127,8 +127,8 @@ provide the public methods described below.
.. method:: Queue.put(item, block=True, timeout=None)
- Put *item* into the queue. If optional args *block* is true and *timeout* is
- ``None`` (the default), block if necessary until a free slot is available. If
+ Put *item* into the queue. If optional args *block* is true and *timeout* is
+ ``None`` (the default), block if necessary until a free slot is available. If
*timeout* is a positive number, it blocks at most *timeout* seconds and raises
the :exc:`Full` exception if no free slot was available within that time.
Otherwise (*block* is false), put an item on the queue if a free slot is
@@ -143,7 +143,7 @@ provide the public methods described below.
.. method:: Queue.get(block=True, timeout=None)
- Remove and return an item from the queue. If optional args *block* is true and
+ Remove and return an item from the queue. If optional args *block* is true and
*timeout* is ``None`` (the default), block if necessary until an item is available.
If *timeout* is a positive number, it blocks at most *timeout* seconds and
raises the :exc:`Empty` exception if no item was available within that time.
@@ -152,7 +152,7 @@ provide the public methods described below.
Prior to 3.0 on POSIX systems, and for all versions on Windows, if
*block* is true and *timeout* is ``None``, this operation goes into
- an uninterruptible wait on an underlying lock. This means that no exceptions
+ an uninterruptible wait on an underlying lock. This means that no exceptions
can occur, and in particular a SIGINT will not trigger a :exc:`KeyboardInterrupt`.
@@ -184,7 +184,7 @@ fully processed by daemon consumer threads.
The count of unfinished tasks goes up whenever an item is added to the queue.
The count goes down whenever a consumer thread calls :meth:`task_done` to
- indicate that the item was retrieved and all work on it is complete. When the
+ indicate that the item was retrieved and all work on it is complete. When the
count of unfinished tasks drops to zero, :meth:`join` unblocks.
@@ -227,7 +227,7 @@ SimpleQueue Objects
.. method:: SimpleQueue.empty()
- Return ``True`` if the queue is empty, ``False`` otherwise. If empty()
+ Return ``True`` if the queue is empty, ``False`` otherwise. If empty()
returns ``False`` it doesn't guarantee that a subsequent call to get()
will not block.