From: Stefan Behnel Date: Sat, 24 Apr 2010 18:31:32 +0000 (+0200) Subject: comment fix X-Git-Tag: 0.13.beta0~2^2~86 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1a3d6371d4d2cffca494f1150023c5b6848dceab;p=cython.git comment fix --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index 2fde55a5..66cbcb5d 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -2317,8 +2317,8 @@ class DefNode(FuncDefNode): # the closure instance must be properly ref-counted to # facilitate generic closure instance deallocation. In # the case of an argument type error, it's best to just - # Py_CLEAR() the already handled references, as this frees - # them as early as possible. + # DECREF+clear the already handled references, as this + # frees their references as early as possible. for arg in self.args: if arg.type.is_pyobject and arg.entry.in_closure: code.put_var_xdecref_clear(arg.entry)