From: Stefan Behnel Date: Fri, 3 Jul 2009 19:21:51 +0000 (+0200) Subject: fix declaration in Parsing.pxd X-Git-Tag: 0.12.alpha0~278 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=311e21825a29cb909730d1681a1efbdda15b82bd;p=cython.git fix declaration in Parsing.pxd --- diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd index 2d271c14..047b2e7f 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -141,7 +141,7 @@ cpdef p_ctypedef_statement(PyrexScanner s, ctx) cpdef p_decorators(PyrexScanner s) cpdef p_def_statement(PyrexScanner s, decorators = *) cpdef p_py_arg_decl(PyrexScanner s) -cpdef p_class_statement(PyrexScanner s, decorators = *) +cpdef p_class_statement(PyrexScanner s, decorators) cpdef p_c_class_definition(PyrexScanner s, pos, ctx) cpdef p_c_class_options(PyrexScanner s) cpdef p_property_decl(PyrexScanner s)