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
696efdd0
Commit
696efdd0
authored
Jan 07, 2011
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mention multiprocessing.Queue in the queue docs
parent
4b512f73
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
Doc/library/queue.rst
Doc/library/queue.rst
+9
-4
No files found.
Doc/library/queue.rst
View file @
696efdd0
...
...
@@ -19,10 +19,6 @@ the first retrieved (operating like a stack). With a priority queue,
the entries are kept sorted (using the :mod:`heapq` module) and the
lowest valued entry is retrieved first.
.. seealso::
Latest version of the :source:`queue module Python source code
<Lib/queue.py>`
The :mod:`queue` module defines the following classes and exceptions:
...
...
@@ -180,3 +176,12 @@ Example of how to wait for enqueued tasks to be completed::
q.join() # block until all tasks are done
.. seealso::
Class :class:`multiprocessing.Queue`
A queue class for use in a multi-processing (rather than multi-threading)
context.
Latest version of the :source:`queue module Python source code
<Lib/queue.py>`
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