[pypy-commit] pypy py3k: itertools.izip has gone in py3k

antocuni noreply at buildbot.pypy.org
Thu May 31 17:11:10 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r55238:6aaaba32e7a6
Date: 2012-05-31 16:23 +0200
http://bitbucket.org/pypy/pypy/changeset/6aaaba32e7a6/

Log:	itertools.izip has gone in py3k

diff --git a/pypy/module/imp/test/test_import.py b/pypy/module/imp/test/test_import.py
--- a/pypy/module/imp/test/test_import.py
+++ b/pypy/module/imp/test/test_import.py
@@ -637,7 +637,7 @@
         try:
             import itertools
             assert not hasattr(itertools, 'hello_world')
-            assert hasattr(itertools, 'izip')
+            assert hasattr(itertools, 'islice')
             assert '(built-in)' in repr(itertools)
         finally:
             sys.path.insert(0, sys.path.pop())


More information about the pypy-commit mailing list