From 2d422b510e05cd719fd00fd4fd674e70ab26cd8c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 27 Jul 2013 17:17:32 +0200 Subject: [PATCH] fix type declaration in parser --- 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 73fb31c..4a19c55 100644 --- a/Cython/Compiler/Parsing.pxd +++ b/Cython/Compiler/Parsing.pxd @@ -126,7 +126,7 @@ cdef p_IF_statement(PyrexScanner s, ctx) cdef p_statement(PyrexScanner s, ctx, bint first_statement = *) cdef p_statement_list(PyrexScanner s, ctx, bint first_statement = *) cdef p_suite(PyrexScanner s, ctx = *) -cdef tuple p_suite_with_docstring(s, ctx, with_doc_only = *) +cdef tuple p_suite_with_docstring(PyrexScanner s, ctx, with_doc_only = *) cdef tuple _extract_docstring(node) cdef p_positional_and_keyword_args(PyrexScanner s, end_sy_set, templates = *) -- 2.7.4