From: Robert Bradshaw Date: Wed, 28 Jan 2009 01:44:47 +0000 (-0800) Subject: Loop should match ticket. X-Git-Tag: 0.11.rc~94 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=23e8ad80afd67b0a2ca77efa7c1c3b75cae2608e;p=cython.git Loop should match ticket. --- diff --git a/tests/bugs/unsignedbehaviour_T184.pyx b/tests/bugs/unsignedbehaviour_T184.pyx index 50024a5d..21cf84e7 100644 --- a/tests/bugs/unsignedbehaviour_T184.pyx +++ b/tests/bugs/unsignedbehaviour_T184.pyx @@ -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