PyObject_Del can now be used as a function designator.

This commit is contained in:
Neil Schemenauer 2002-04-12 02:44:10 +00:00
parent 6189b89cc5
commit aa769ae468
6 changed files with 7 additions and 7 deletions

View file

@ -554,7 +554,7 @@ PyTypeObject PyClassMethod_Type = {
cm_init, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
PyType_GenericNew, /* tp_new */
_PyObject_Del, /* tp_free */
PyObject_Del, /* tp_free */
};
PyObject *
@ -683,7 +683,7 @@ PyTypeObject PyStaticMethod_Type = {
sm_init, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
PyType_GenericNew, /* tp_new */
_PyObject_Del, /* tp_free */
PyObject_Del, /* tp_free */
};
PyObject *