[Python-checkins] r87146 - in python/branches/py3k: Doc/library/concurrent.futures.rst Lib/concurrent/futures/process.py

georg.brandl python-checkins at python.org
Thu Dec 9 19:08:43 CET 2010


Author: georg.brandl
Date: Thu Dec  9 19:08:43 2010
New Revision: 87146

Log:
Fix "seperate".

Modified:
   python/branches/py3k/Doc/library/concurrent.futures.rst
   python/branches/py3k/Lib/concurrent/futures/process.py

Modified: python/branches/py3k/Doc/library/concurrent.futures.rst
==============================================================================
--- python/branches/py3k/Doc/library/concurrent.futures.rst	(original)
+++ python/branches/py3k/Doc/library/concurrent.futures.rst	Thu Dec  9 19:08:43 2010
@@ -10,7 +10,7 @@
 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.
 

Modified: python/branches/py3k/Lib/concurrent/futures/process.py
==============================================================================
--- python/branches/py3k/Lib/concurrent/futures/process.py	(original)
+++ python/branches/py3k/Lib/concurrent/futures/process.py	Thu Dec  9 19:08:43 2010
@@ -118,7 +118,7 @@
 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


More information about the Python-checkins mailing list