From: Neil Schemenauer Date: Fri, 12 Apr 2002 03:05:52 +0000 (+0000) Subject: PyObject_GC_Del can now be used as a function designator. X-Git-Tag: v2.3c1~6023 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=626d774df6752f3f8b12c99567d70c5539b2949b;p=python PyObject_GC_Del can now be used as a function designator. --- diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index ab792def93..581ccf9c6a 100644 --- a/Objects/tupleobject.c +++ b/Objects/tupleobject.c @@ -582,7 +582,7 @@ PyTypeObject PyTuple_Type = { 0, /* tp_init */ 0, /* tp_alloc */ tuple_new, /* tp_new */ - _PyObject_GC_Del, /* tp_free */ + PyObject_GC_Del, /* tp_free */ }; /* The following function breaks the notion that tuples are immutable: