Commit 23e8ad80 authored by Robert Bradshaw's avatar Robert Bradshaw

Loop should match ticket.

parent 05b93dae
...@@ -26,7 +26,7 @@ def py_call(): ...@@ -26,7 +26,7 @@ def py_call():
def loop(): def loop():
cdef unsigned int i = 10 cdef unsigned int i = 10
times = 0 times = 0
for i in range(-i,i): for x in range(-i,i):
times += 1 times += 1
return times return times
......
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