From 8c531023683917dd180eb32610cd5b60ddc42aac Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Mon, 21 Oct 2013 23:55:55 -0700 Subject: [PATCH] fix cdef signature --- Cython/Compiler/Parsing.pxd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd index 4a19c55..57a5b35 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -132,7 +132,7 @@ cdef p_positional_and_keyword_args(PyrexScanner s, end_sy_set, templates = *) cpdef p_c_base_type(PyrexScanner s, bint self_flag = *, bint nonempty = *, templates = *) cdef p_calling_convention(PyrexScanner s) -cdef p_c_complex_base_type(PyrexScanner s) +cdef p_c_complex_base_type(PyrexScanner s, templates = *) cdef p_c_simple_base_type(PyrexScanner s, bint self_flag, bint nonempty, templates = *) cdef p_buffer_or_template(PyrexScanner s, base_type_node, templates) cdef p_bracketed_base_type(PyrexScanner s, base_type_node, nonempty, empty) -- 2.7.4