diff options
author | Georg Brandl <georg@python.org> | 2010-12-09 18:08:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-09 18:08:43 (GMT) |
commit | fb1720b0f57fe6bbae81d9e8cb73076aebc7b40b (patch) | |
tree | 0a71ef7e4af78737650c75b1e12ee3f51495969f /Lib | |
parent | 792c076cce293d8c561c06f4d54749a4b26baf96 (diff) | |
download | cpython-fb1720b0f57fe6bbae81d9e8cb73076aebc7b40b.zip cpython-fb1720b0f57fe6bbae81d9e8cb73076aebc7b40b.tar.gz cpython-fb1720b0f57fe6bbae81d9e8cb73076aebc7b40b.tar.bz2 |
Fix "seperate".
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/concurrent/futures/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py index 36a40d3..f461b77 100644 --- a/Lib/concurrent/futures/process.py +++ b/Lib/concurrent/futures/process.py @@ -118,7 +118,7 @@ class _CallItem(object): def _process_worker(call_queue, result_queue, shutdown): """Evaluates calls from call_queue and places the results in result_queue. - This worker is run in a seperate process. + This worker is run in a separate process. Args: call_queue: A multiprocessing.Queue of _CallItems that will be read and |