From d7406d0d3962466a5b186d6916d80df62259e137 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 8 Dec 2013 15:16:49 +0100 Subject: [PATCH] fix test after making constant folding remove unused constants --- tests/errors/nogil.pyx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/errors/nogil.pyx b/tests/errors/nogil.pyx index 022604e..98b6940 100644 --- a/tests/errors/nogil.pyx +++ b/tests/errors/nogil.pyx @@ -30,7 +30,7 @@ cdef object m(): 17L 7j help - `"Hello"` + xxx = `"Hello"` import fred from fred import obj for x in obj: @@ -102,9 +102,9 @@ _ERRORS = u""" 27:9: Calling gil-requiring function not allowed without gil 29:12: Assignment of Python object not allowed without gil 31:16: Constructing complex number not allowed without gil -33:8: Backquote expression not allowed without gil -33:8: Discarding owned Python object not allowed without gil -33:9: Operation not allowed without gil +33:12: Assignment of Python object not allowed without gil +33:14: Backquote expression not allowed without gil +33:15: Operation not allowed without gil 34:15: Assignment of Python object not allowed without gil 34:15: Operation not allowed without gil 34:15: Python import not allowed without gil -- 2.7.4