commit | 17301e9fab311badbbe26a1efcb2decf637b324a | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Mar 13 00:19:26 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Mar 13 00:19:26 2008 +0000 |
tree | 1326aa6f309cc11fa17b4aee81c26eea77d47e1e | |
parent | 45832ea4082c6df50021dbeb9a157aad851fdeb8 [diff] [blame] |
Issue 2186 and 2187. Move filter from itertools to builtins.
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index 4e0902b..13dc1f9 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py
@@ -8,6 +8,7 @@ from functools import reduce maxsize = test_support.MAX_Py_ssize_t minsize = -maxsize-1 +ifilter = filter def lzip(*args): return list(zip(*args))