[Python-checkins] r67332 - python/trunk/Lib/multiprocessing/pool.py

georg.brandl python-checkins at python.org
Sat Nov 22 09:45:34 CET 2008


Author: georg.brandl
Date: Sat Nov 22 09:45:33 2008
New Revision: 67332

Log:
Fix typo.


Modified:
   python/trunk/Lib/multiprocessing/pool.py

Modified: python/trunk/Lib/multiprocessing/pool.py
==============================================================================
--- python/trunk/Lib/multiprocessing/pool.py	(original)
+++ python/trunk/Lib/multiprocessing/pool.py	Sat Nov 22 09:45:33 2008
@@ -149,7 +149,7 @@
 
     def imap(self, func, iterable, chunksize=1):
         '''
-        Equivalent of `itertool.imap()` -- can be MUCH slower than `Pool.map()`
+        Equivalent of `itertools.imap()` -- can be MUCH slower than `Pool.map()`
         '''
         assert self._state == RUN
         if chunksize == 1:


More information about the Python-checkins mailing list