From 1a3d6371d4d2cffca494f1150023c5b6848dceab Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 24 Apr 2010 20:31:32 +0200 Subject: [PATCH] comment fix --- Cython/Compiler/Nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.26.2