From: Stefan Behnel Date: Sun, 22 Feb 2009 10:24:54 +0000 (+0100) Subject: enable refnanny for module init function (by Lisandro) X-Git-Tag: 0.11.rc~55 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dc1104f3ddd5b23615851df623cc4b69630e39b6;p=cython.git enable refnanny for module init function (by Lisandro) --- diff --git a/Cython/Compiler/ModuleNode.py b/Cython/Compiler/ModuleNode.py index f37e1884..37fec8ca 100644 --- a/Cython/Compiler/ModuleNode.py +++ b/Cython/Compiler/ModuleNode.py @@ -1651,11 +1651,9 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): env.use_utility_code(Nodes.traceback_utility_code) code.putln("%s = NULL;" % Naming.retval_cname) code.put_label(code.return_label) - # Disabled because of confusion with refcount of global variables -- run ass2cglobal testcase to see - #code.put_finish_refcount_context() - code.putln("#if CYTHON_REFNANNY") - code.putln("if (__pyx_refchk) {};") - code.putln("#endif") + + code.put_finish_refcount_context() + code.putln("#if PY_MAJOR_VERSION < 3") code.putln("return;") code.putln("#else") @@ -1793,7 +1791,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode): for entry in env.var_entries: if entry.visibility != 'extern': if entry.type.is_pyobject and entry.used: - code.put_init_var_to_py_none(entry) + code.put_init_var_to_py_none(entry, nanny=False) def generate_c_function_export_code(self, env, code): # Generate code to create PyCFunction wrappers for exported C functions.