diff options
Diffstat (limited to 'Objects')
| -rw-r--r-- | Objects/complexobject.c | 2 | ||||
| -rw-r--r-- | Objects/fileobject.c | 2 | ||||
| -rw-r--r-- | Objects/funcobject.c | 4 | ||||
| -rw-r--r-- | Objects/longobject.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 48a9afa2e7..3dbaea364b 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -992,7 +992,7 @@ PyTypeObject PyComplex_Type = { 0, /* tp_init */ 0, /* tp_alloc */ complex_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; #endif diff --git a/Objects/fileobject.c b/Objects/fileobject.c index a03796bf18..54d040de22 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -1631,7 +1631,7 @@ PyTypeObject PyFile_Type = { (initproc)file_init, /* tp_init */ PyType_GenericAlloc, /* tp_alloc */ file_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; /* Interface for the 'soft space' between print items. */ diff --git a/Objects/funcobject.c b/Objects/funcobject.c index 178bd7709e..a3541e4ee9 100644 --- a/Objects/funcobject.c +++ b/Objects/funcobject.c @@ -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 * diff --git a/Objects/longobject.c b/Objects/longobject.c index c17d56f12c..f11c016294 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -2352,5 +2352,5 @@ PyTypeObject PyLong_Type = { 0, /* tp_init */ 0, /* tp_alloc */ long_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; |
