Author: Antonio Cuni <[email protected]>
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()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit