From 23e8ad80afd67b0a2ca77efa7c1c3b75cae2608e Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Tue, 27 Jan 2009 17:44:47 -0800 Subject: [PATCH] Loop should match ticket. --- tests/bugs/unsignedbehaviour_T184.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.26.2