Kaydet (Commit) 99b5d284 authored tarafından Neil Schemenauer's avatar Neil Schemenauer

PyObject_GC_Del can now be used as a function designator.

üst aa769ae4
......@@ -1127,5 +1127,5 @@ PyTypeObject PyProperty_Type = {
property_init, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
PyType_GenericNew, /* tp_new */
_PyObject_GC_Del, /* tp_free */
PyObject_GC_Del, /* tp_free */
};
......@@ -1714,7 +1714,7 @@ PyTypeObject PyList_Type = {
(initproc)list_init, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
PyType_GenericNew, /* tp_new */
_PyObject_GC_Del, /* tp_free */
PyObject_GC_Del, /* tp_free */
};
......
......@@ -237,5 +237,5 @@ PyTypeObject PyModule_Type = {
(initproc)module_init, /* tp_init */
PyType_GenericAlloc, /* tp_alloc */
PyType_GenericNew, /* tp_new */
_PyObject_GC_Del, /* tp_free */
PyObject_GC_Del, /* tp_free */
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment