Loop should match ticket.
authorRobert Bradshaw <robertwb@math.washington.edu>
Wed, 28 Jan 2009 01:44:47 +0000 (17:44 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Wed, 28 Jan 2009 01:44:47 +0000 (17:44 -0800)
tests/bugs/unsignedbehaviour_T184.pyx

index 50024a5df45dce5efa0ed68967fb2e3d3ad4782f..21cf84e7e87d59867580c4dfcaaa5c96be547230 100644 (file)
@@ -26,7 +26,7 @@ def py_call():
 def loop():
     cdef unsigned int i = 10
     times = 0
-    for i in range(-i,i):
+    for x in range(-i,i):
         times += 1
     return times