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
fb1720b0
Commit
fb1720b0
authored
Dec 09, 2010
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix "seperate".
parent
792c076c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
Doc/library/concurrent.futures.rst
Doc/library/concurrent.futures.rst
+1
-1
Lib/concurrent/futures/process.py
Lib/concurrent/futures/process.py
+1
-1
No files found.
Doc/library/concurrent.futures.rst
View file @
fb1720b0
...
@@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for
...
@@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for
asynchronously executing callables.
asynchronously executing callables.
The asynchronous execution can be be performed with threads, using
The asynchronous execution can be be performed with threads, using
:class:`ThreadPoolExecutor`, or sep
e
rate processes, using
:class:`ThreadPoolExecutor`, or sep
a
rate processes, using
:class:`ProcessPoolExecutor`. Both implement the same interface, which is
:class:`ProcessPoolExecutor`. Both implement the same interface, which is
defined by the abstract :class:`Executor` class.
defined by the abstract :class:`Executor` class.
...
...
Lib/concurrent/futures/process.py
View file @
fb1720b0
...
@@ -118,7 +118,7 @@ class _CallItem(object):
...
@@ -118,7 +118,7 @@ class _CallItem(object):
def
_process_worker
(
call_queue
,
result_queue
,
shutdown
):
def
_process_worker
(
call_queue
,
result_queue
,
shutdown
):
"""Evaluates calls from call_queue and places the results in result_queue.
"""Evaluates calls from call_queue and places the results in result_queue.
This worker is run in a sep
e
rate process.
This worker is run in a sep
a
rate process.
Args:
Args:
call_queue: A multiprocessing.Queue of _CallItems that will be read and
call_queue: A multiprocessing.Queue of _CallItems that will be read and
...
...
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