PyObject_GC_Del can now be used as a function designator.

This commit is contained in:
Neil Schemenauer 2002-04-12 03:05:52 +00:00
parent 7465ad2fc9
commit 626d774df6
1 changed files with 1 additions and 1 deletions

View File

@ -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: