From: Stefan Behnel Date: Fri, 19 Dec 2008 18:26:53 +0000 (+0100) Subject: missing cpdef declarations for Parsing.py X-Git-Tag: 0.11-beta~102 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d49e0ae5dbf7cc69a5aaefd096312a8c7b51d30f;p=cython.git missing cpdef declarations for Parsing.py --- diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd index d1b78fa9..57532e43 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -25,6 +25,7 @@ cpdef p_term(PyrexScanner s) cpdef p_factor(PyrexScanner s) cpdef p_typecast(PyrexScanner s) cpdef p_sizeof(PyrexScanner s) +cpdef p_yield_expression(PyrexScanner s) cpdef p_power(PyrexScanner s) cpdef p_trailer(PyrexScanner s, node1) cpdef p_call(PyrexScanner s, function) @@ -56,9 +57,13 @@ cpdef p_testlist(PyrexScanner s) # #------------------------------------------------------- +cpdef flatten_parallel_assignments(input, output) +cpdef find_parallel_assignment_size(input) + cpdef p_global_statement(PyrexScanner s) cpdef p_expression_or_assignment(PyrexScanner s) cpdef p_print_statement(PyrexScanner s) +cpdef p_exec_statement(PyrexScanner s) cpdef p_del_statement(PyrexScanner s) cpdef p_pass_statement(PyrexScanner s, bint with_newline = *) cpdef p_break_statement(PyrexScanner s)