Remove duplicate DECREF, tp_clear does it already
authorPauli Virtanen <pav@iki.fi>
Sun, 17 Mar 2013 18:11:34 +0000 (20:11 +0200)
committerPauli Virtanen <pav@iki.fi>
Sun, 17 Mar 2013 18:11:34 +0000 (20:11 +0200)
Cython/Utility/CythonFunction.c

index 58bfa03..fd675ce 100644 (file)
@@ -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);
 }