From 351d31099ed70988f3ded374067ec1a8948f4a2f Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Sun, 17 Mar 2013 20:11:34 +0200 Subject: [PATCH] Remove duplicate DECREF, tp_clear does it already --- Cython/Utility/CythonFunction.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Cython/Utility/CythonFunction.c b/Cython/Utility/CythonFunction.c index 58bfa03..fd675ce 100644 --- a/Cython/Utility/CythonFunction.c +++ b/Cython/Utility/CythonFunction.c @@ -625,7 +625,6 @@ __pyx_FusedFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, } static void __pyx_FusedFunction_dealloc(__pyx_FusedFunctionObject *self) { - Py_XDECREF(self->__signatures__); __pyx_FusedFunction_clear(self); __pyx_FusedFunctionType->tp_free((PyObject *) self); } -- 2.7.4