commit | a6c6037f882573c9965e4fac74765357e42148e4 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Mar 13 01:26:19 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Mar 13 01:26:19 2008 +0000 |
tree | b35d3490d3d547e3bd86f11e3ad761b2c6445f6b | |
parent | 17301e9fab311badbbe26a1efcb2decf637b324a [diff] [blame] |
Issues 2186 and 2187. Move map() from itertools to builtins.
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 13dc1f9..7d905d8 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py
@@ -9,6 +9,7 @@ maxsize = test_support.MAX_Py_ssize_t minsize = -maxsize-1 ifilter = filter +imap = map def lzip(*args): return list(zip(*args))