diff options
author | Raymond Hettinger <python@rcn.com> | 2008-03-13 00:19:26 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-03-13 00:19:26 +0000 |
commit | 17301e9fab311badbbe26a1efcb2decf637b324a (patch) | |
tree | 1326aa6f309cc11fa17b4aee81c26eea77d47e1e /Lib/test/test_itertools.py | |
parent | 45832ea4082c6df50021dbeb9a157aad851fdeb8 (diff) | |
download | cpython-git-17301e9fab311badbbe26a1efcb2decf637b324a.tar.gz |
Issue 2186 and 2187. Move filter 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 4e0902b7d2..13dc1f98f9 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py @@ -8,6 +8,7 @@ import random from functools import reduce maxsize = test_support.MAX_Py_ssize_t minsize = -maxsize-1 +ifilter = filter def lzip(*args): return list(zip(*args)) |