Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5ec0340c
Commit
5ec0340c
authored
May 08, 2012
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve the grammar of a non-sentence.
parent
f1ae5cf5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Doc/library/queue.rst
Doc/library/queue.rst
+2
-2
No files found.
Doc/library/queue.rst
View file @
5ec0340c
...
@@ -20,8 +20,8 @@ module implements all the required locking semantics. It depends on the
...
@@ -20,8 +20,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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment