From 626d774df6752f3f8b12c99567d70c5539b2949b Mon Sep 17 00:00:00 2001 From: Neil Schemenauer Date: Fri, 12 Apr 2002 03:05:52 +0000 Subject: PyObject_GC_Del can now be used as a function designator. --- Objects/tupleobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index ab792de..581ccf9 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: -- cgit v0.12