From 3144b7a7b9e6726a42ed088d5f1aea4c9d93b8a1 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 14 Nov 2010 18:59:50 +0100 Subject: [PATCH] drop some useless code in the string literal parser --- Cython/Compiler/Parsing.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd index 53239188..76de1644 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -53,7 +53,7 @@ cpdef p_name(PyrexScanner s, name) cpdef p_cat_string_literal(PyrexScanner s) cpdef p_opt_string_literal(PyrexScanner s, required_type=*) cpdef bint check_for_non_ascii_characters(unicode string) -@cython.locals(systr=unicode) +@cython.locals(systr=unicode, is_python3_source=bint) cpdef p_string_literal(PyrexScanner s, kind_override=*) cpdef p_list_maker(PyrexScanner s) cpdef p_comp_iter(PyrexScanner s, body) -- 2.26.2