Commit bca0276c authored by Stefan Behnel's avatar Stefan Behnel

Clean up legacy syntax usage in test.

parent 24c533e0
......@@ -128,7 +128,7 @@ def callees(pstats, target_caller):
def test_profile(long N):
cdef long i, n = 0
cdef A a = A()
for i from 0 <= i < N:
for i in range(N):
n += f_def(i)
n += f_cdef(i)
n += f_cpdef(i)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment