summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-07-17 11:56:44 +0200
committerStefan Behnel <stefan_ml@behnel.de>2022-07-17 11:57:10 +0200
commitef0e7a2ebfae6a32eaf9da5d935750250b8573f5 (patch)
tree120ab5be8fdaad8b23653c496ecd89d711c629e5
parent20cb27bf1ca1f3b2b45ef4f59fabfc64acb29cf6 (diff)
downloadcython-ef0e7a2ebfae6a32eaf9da5d935750250b8573f5.tar.gz
Fix parser functions declarations.
-rw-r--r--Cython/Compiler/Parsing.pxd4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cython/Compiler/Parsing.pxd b/Cython/Compiler/Parsing.pxd
index 5fcc735b4..dbed77415 100644
--- a/Cython/Compiler/Parsing.pxd
+++ b/Cython/Compiler/Parsing.pxd
@@ -132,8 +132,8 @@ cdef p_except_clause(PyrexScanner s)
cdef p_include_statement(PyrexScanner s, ctx)
cdef p_with_statement(PyrexScanner s)
cdef p_with_items(PyrexScanner s, bint is_async=*)
-cdef p_with_items_list(s, bint is_async)
-cdef tuple p_with_item(s, bint is_async)
+cdef p_with_items_list(PyrexScanner s, bint is_async)
+cdef tuple p_with_item(PyrexScanner s, bint is_async)
cdef p_with_template(PyrexScanner s)
cdef p_simple_statement(PyrexScanner s, bint first_statement = *)
cdef p_simple_statement_list(PyrexScanner s, ctx, bint first_statement = *)