From ddb647285838eb756ddc581995465f4c2d4e37a5 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 10 Feb 2008 08:10:21 +0100 Subject: [PATCH] fixed NameError --- 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 3489c3dd..8635642c 100644 --- a/Cython/Compiler/Parsing.py +++ b/Cython/Compiler/Parsing.py @@ -1302,7 +1302,7 @@ def p_IF_statement(s, level, cdef_flag, visibility, api): if current_eval: result = body if not result: - result = PassStatNode(pos) + result = Nodes.PassStatNode(pos) s.compile_time_eval = saved_eval return result -- 2.26.2