diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 02:44:22 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 02:44:22 (GMT) |
commit | 99b5d28467f87b3e5b28f35794a7111218e642f8 (patch) | |
tree | f297cb56122f40b74aeec37eb8ec1e413b843fff /Objects | |
parent | aa769ae468c7b857226ebe5b073b4c787a60445a (diff) | |
download | cpython-99b5d28467f87b3e5b28f35794a7111218e642f8.zip cpython-99b5d28467f87b3e5b28f35794a7111218e642f8.tar.gz cpython-99b5d28467f87b3e5b28f35794a7111218e642f8.tar.bz2 |
PyObject_GC_Del can now be used as a function designator.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/descrobject.c | 2 | ||||
-rw-r--r-- | Objects/listobject.c | 2 | ||||
-rw-r--r-- | Objects/moduleobject.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 924c0b2..339bf70 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -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 */ }; diff --git a/Objects/listobject.c b/Objects/listobject.c index f3821f8..44965157 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -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 */ }; diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c index 12a3591..807adfa 100644 --- a/Objects/moduleobject.c +++ b/Objects/moduleobject.c @@ -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 */ }; |