missing cpdef declarations for Parsing.py
authorStefan Behnel <scoder@users.berlios.de>
Fri, 19 Dec 2008 18:26:53 +0000 (19:26 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 19 Dec 2008 18:26:53 +0000 (19:26 +0100)
Cython/Compiler/Parsing.pxd

index d1b78fa9b2beed253932a50d73b11fbf945f90a2..57532e4359117c3789532027af24079af01be998 100644 (file)
@@ -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)