[pypy-commit] pypy py3k: s/xrange/range

antocuni noreply at buildbot.pypy.org
Tue Feb 21 10:50:41 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r52705:e2b89bb4df90
Date: 2012-02-21 00:03 +0100
http://bitbucket.org/pypy/pypy/changeset/e2b89bb4df90/

Log:	s/xrange/range

diff --git a/pypy/interpreter/test/test_pyframe.py b/pypy/interpreter/test/test_pyframe.py
--- a/pypy/interpreter/test/test_pyframe.py
+++ b/pypy/interpreter/test/test_pyframe.py
@@ -317,7 +317,7 @@
 
         def f(): return 1
 
-        for i in xrange(sys.getrecursionlimit() + 1):
+        for i in range(sys.getrecursionlimit() + 1):
             sys.settrace(trace)
             try:
                 f()


More information about the pypy-commit mailing list