From 736c0ab428e69b1be67bd91969477e5227613241 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 13 Mar 2008 02:09:15 +0000 Subject: Move itertools izip() code to builtins as zip(). Complete the renaming. --- Lib/test/seq_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/seq_tests.py') diff --git a/Lib/test/seq_tests.py b/Lib/test/seq_tests.py index dfa18c5558..dd12ee3a05 100644 --- a/Lib/test/seq_tests.py +++ b/Lib/test/seq_tests.py @@ -79,7 +79,7 @@ class IterFuncStop: def __next__(self): raise StopIteration -from itertools import chain, map +from itertools import chain def itermulti(seqn): 'Test multiple tiers of iterators' return chain(map(lambda x:x, iterfunc(IterGen(Sequence(seqn))))) -- cgit v1.2.1