diff options
author | Georg Brandl <georg@python.org> | 2008-11-22 08:45:33 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-11-22 08:45:33 (GMT) |
commit | 5ecd7452ec2fafc4ff4addb8d56361a379708eb8 (patch) | |
tree | 24ae4141f4035e75ff0919ee986655a43aacb85b | |
parent | b053f991b4d0b8832f95751b3a49eed3f2e49cdb (diff) | |
download | cpython-5ecd7452ec2fafc4ff4addb8d56361a379708eb8.zip cpython-5ecd7452ec2fafc4ff4addb8d56361a379708eb8.tar.gz cpython-5ecd7452ec2fafc4ff4addb8d56361a379708eb8.tar.bz2 |
Fix typo.
-rw-r--r-- | Lib/multiprocessing/pool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/pool.py b/Lib/multiprocessing/pool.py index cb9f02a..9da27d4 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: |