From: Dag Sverre Seljebotn Date: Mon, 12 Jan 2009 15:30:03 +0000 (+0100) Subject: Typo X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c9235aa44792b35f051cc0702576121743ca8e16;p=cython.git Typo --- diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index 488da6ff..697881fc 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -1647,7 +1647,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): code.putln("%s = NULL;" % Naming.retval_cname) code.put_label(code.return_label) code.put_finish_refcount_context(self.pos, env.qualified_name, - "NULL", Naming.retval_cname) + Naming.retval_cname, "NULL") code.putln("#if PY_MAJOR_VERSION < 3") code.putln("return;") code.putln("#else")