diff options
author | Raymond Hettinger <python@rcn.com> | 2008-03-13 01:26:19 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-03-13 01:26:19 (GMT) |
commit | a6c6037f882573c9965e4fac74765357e42148e4 (patch) | |
tree | b35d3490d3d547e3bd86f11e3ad761b2c6445f6b /Lib/test/test_itertools.py | |
parent | 17301e9fab311badbbe26a1efcb2decf637b324a (diff) | |
download | cpython-a6c6037f882573c9965e4fac74765357e42148e4.zip cpython-a6c6037f882573c9965e4fac74765357e42148e4.tar.gz cpython-a6c6037f882573c9965e4fac74765357e42148e4.tar.bz2 |
Issues 2186 and 2187. Move map() from itertools to builtins.
Diffstat (limited to 'Lib/test/test_itertools.py')
-rw-r--r-- | Lib/test/test_itertools.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ from functools import reduce maxsize = test_support.MAX_Py_ssize_t minsize = -maxsize-1 ifilter = filter +imap = map def lzip(*args): return list(zip(*args)) |