From: Stefan Behnel Date: Sun, 3 May 2009 19:39:50 +0000 (+0200) Subject: fix compilation of Parsing.py X-Git-Tag: 0.13.beta0~2^2~133 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c1b182d536081600d5ba9e4623bd8e63cb6535a1;p=cython.git fix compilation of Parsing.py --- diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd index c2e68c22..68d259fa 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -43,9 +43,9 @@ cpdef p_cat_string_literal(PyrexScanner s) cpdef p_opt_string_literal(PyrexScanner s) cpdef p_string_literal(PyrexScanner s) cpdef p_list_maker(PyrexScanner s) -cpdef p_list_iter(PyrexScanner s, body) -cpdef p_list_for(PyrexScanner s, body) -cpdef p_list_if(PyrexScanner s, body) +cpdef p_comp_iter(PyrexScanner s, body) +cpdef p_comp_for(PyrexScanner s, body) +cpdef p_comp_if(PyrexScanner s, body) cpdef p_dict_or_set_maker(PyrexScanner s) cpdef p_backquote_expr(PyrexScanner s) cpdef p_simple_expr_list(PyrexScanner s)