From 6321b391bbd8e68496d726c76a13a0ba0fd5f0e9 Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn <dagss@student.matnat.uio.no> Date: Mon, 11 Jul 2011 18:56:55 +0200 Subject: [PATCH] fixup for memoryview parsing --- Cython/Compiler/Parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Parsing.py b/Cython/Compiler/Parsing.py index b95d4757a..e0dd56660 100644 --- a/Cython/Compiler/Parsing.py +++ b/Cython/Compiler/Parsing.py @@ -1938,7 +1938,7 @@ def p_c_complex_base_type(s): # s.sy == '(' pos = s.position() s.next() - base_type = p_c_base_type(s, empty = 1) + base_type = p_c_base_type(s) declarator = p_c_declarator(s, empty = 1) s.expect(')') return Nodes.CComplexBaseTypeNode(pos, -- 2.30.9