diff options
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 13dc1f98f9..7d905d81e0 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)) |