From: Georg Brandl Date: Sat, 22 Nov 2008 08:45:33 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v2.7a1~2637 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ecd7452ec2fafc4ff4addb8d56361a379708eb8;p=thirdparty%2FPython%2Fcpython.git Fix typo. --- diff --git a/Lib/multiprocessing/pool.py b/Lib/multiprocessing/pool.py index cb9f02ab8d5a..9da27d48edff 100644 --- a/Lib/multiprocessing/pool.py +++ b/Lib/multiprocessing/pool.py @@ -149,7 +149,7 @@ class Pool(object): 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: