From: Georg Brandl Date: Thu, 9 Dec 2010 18:08:43 +0000 (+0000) Subject: Fix "seperate". X-Git-Tag: v3.2b2~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb1720b0f57fe6bbae81d9e8cb73076aebc7b40b;p=python Fix "seperate". --- diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index a7a2c39463..3b74aa88bf 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for asynchronously executing callables. The asynchronous execution can be be performed with threads, using -:class:`ThreadPoolExecutor`, or seperate processes, using +:class:`ThreadPoolExecutor`, or separate processes, using :class:`ProcessPoolExecutor`. Both implement the same interface, which is defined by the abstract :class:`Executor` class. diff --git a/Lib/concurrent/futures/process.py b/Lib/concurrent/futures/process.py index 36a40d3142..f461b7777d 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