From: Stefan Behnel Date: Sun, 10 Feb 2008 07:10:21 +0000 (+0100) Subject: fixed NameError X-Git-Tag: 0.9.6.14~29^2~37^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ddb647285838eb756ddc581995465f4c2d4e37a5;p=cython.git fixed NameError --- 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