From: Stefan Behnel Date: Fri, 19 Dec 2008 17:03:13 +0000 (+0100) Subject: Cython compile fixes X-Git-Tag: 0.11-beta~103 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6d933553308bafaba8e23408883ed2c02ec7f9ce;p=cython.git Cython compile fixes --- diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd index 0f1f33bf..d1b78fa9 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -41,9 +41,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) -cpdef p_list_for(PyrexScanner s) -cpdef p_list_if(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_dict_or_set_maker(PyrexScanner s) cpdef p_backquote_expr(PyrexScanner s) cpdef p_simple_expr_list(PyrexScanner s)