Author: Manuel Jacob <m...@manueljacob.de>
Branch: py3k
Changeset: r78563:e3d0cafafa1a
Date: 2015-07-17 04:21 +0200
http://bitbucket.org/pypy/pypy/changeset/e3d0cafafa1a/

Log:    2to3

diff --git a/pypy/interpreter/test/test_zzpickle_and_slow.py 
b/pypy/interpreter/test/test_zzpickle_and_slow.py
--- a/pypy/interpreter/test/test_zzpickle_and_slow.py
+++ b/pypy/interpreter/test/test_zzpickle_and_slow.py
@@ -537,9 +537,9 @@
             yield 0
 
         x = f()
-        x.next()
+        next(x)
         try:
-            x.next()
+            next(x)
         except StopIteration:
             y = pickle.loads(pickle.dumps(x))
         assert 'finished' in y.__name__
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to