From: Tim Peters Date: Fri, 16 May 2003 20:02:26 +0000 (+0000) Subject: Stopped using the old macro form of _PyObject_Del. X-Git-Tag: v2.3c1~700 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0490011075da8728dc3be51729845ee5fec6a6bd;p=python Stopped using the old macro form of _PyObject_Del. --- diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index 0fc403bd5f..66fb355418 100644 --- a/Modules/datetimemodule.c +++ b/Modules/datetimemodule.c @@ -2117,7 +2117,7 @@ static PyTypeObject PyDateTime_DeltaType = { 0, /* tp_init */ 0, /* tp_alloc */ delta_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; /* @@ -2670,7 +2670,7 @@ static PyTypeObject PyDateTime_DateType = { 0, /* tp_init */ 0, /* tp_alloc */ date_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; /* @@ -3441,7 +3441,7 @@ statichere PyTypeObject PyDateTime_TimeType = { 0, /* tp_init */ 0, /* tp_alloc */ time_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; /* @@ -4462,7 +4462,7 @@ statichere PyTypeObject PyDateTime_DateTimeType = { 0, /* tp_init */ 0, /* tp_alloc */ datetime_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; /* ---------------------------------------------------------------------------