From 6d933553308bafaba8e23408883ed2c02ec7f9ce Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 19 Dec 2008 18:03:13 +0100 Subject: [PATCH] Cython compile fixes --- Cython/Compiler/Parsing.pxd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) -- 2.26.2