mirror of
https://github.com/python/cpython.git
synced 2025-10-18 20:58:48 +00:00
Merge: Improve the grammar of a non-sentence.
This commit is contained in:
commit
7ca8d1f748
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ module implements all the required locking semantics. It depends on the
|
||||||
availability of thread support in Python; see the :mod:`threading`
|
availability of thread support in Python; see the :mod:`threading`
|
||||||
module.
|
module.
|
||||||
|
|
||||||
Implements three types of queue whose only difference is the order that
|
The module implements three types of queue, which differ only in the order in
|
||||||
the entries are retrieved. In a FIFO queue, the first tasks added are
|
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. In a LIFO queue, the most recently added entry is
|
||||||
the first retrieved (operating like a stack). With a priority queue,
|
the first retrieved (operating like a stack). With a priority queue,
|
||||||
the entries are kept sorted (using the :mod:`heapq` module) and the
|
the entries are kept sorted (using the :mod:`heapq` module) and the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue