From: Stefan Behnel Date: Mon, 4 May 2009 06:44:00 +0000 (+0200) Subject: more typing in Parsing.pxd X-Git-Tag: 0.13.beta0~2^2~130 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fccb90c89420eb6ee5ebe8c8c730475ac118f519;p=cython.git more typing in Parsing.pxd --- diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd index 981ba483..e7f80089 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -134,15 +134,15 @@ cpdef p_cdef_statement(PyrexScanner s, ctx) cpdef p_cdef_block(PyrexScanner s, ctx) cpdef p_cdef_extern_block(PyrexScanner s, pos, ctx) cpdef p_c_enum_definition(PyrexScanner s, pos, ctx) -cpdef p_c_enum_line(PyrexScanner s, items) -cpdef p_c_enum_item(PyrexScanner s, items) +cpdef p_c_enum_line(PyrexScanner s, list items) +cpdef p_c_enum_item(PyrexScanner s, list items) cpdef p_c_struct_or_union_definition(PyrexScanner s, pos, ctx) cpdef p_visibility(PyrexScanner s, prev_visibility) cpdef p_c_modifiers(PyrexScanner s) cpdef p_c_func_or_var_declaration(PyrexScanner s, pos, ctx) cpdef p_ctypedef_statement(PyrexScanner s, ctx) cpdef p_decorators(PyrexScanner s) -cpdef p_def_statement(PyrexScanner s, decorators = *) +cpdef p_def_statement(PyrexScanner s, list decorators = *) cpdef p_varargslist(PyrexScanner s, terminator=*) cpdef p_py_arg_decl(PyrexScanner s) cpdef p_class_statement(PyrexScanner s)