diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-05-16 20:02:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-05-16 20:02:26 (GMT) |
commit | 0490011075da8728dc3be51729845ee5fec6a6bd (patch) | |
tree | f83a6cf6b2b454e9a4e0586650caa32833b59058 /Modules/datetimemodule.c | |
parent | 282012593510a285fec5b8b5e42b04fef3ffffe0 (diff) | |
download | cpython-0490011075da8728dc3be51729845ee5fec6a6bd.zip cpython-0490011075da8728dc3be51729845ee5fec6a6bd.tar.gz cpython-0490011075da8728dc3be51729845ee5fec6a6bd.tar.bz2 |
Stopped using the old macro form of _PyObject_Del.
Diffstat (limited to 'Modules/datetimemodule.c')
-rw-r--r-- | Modules/datetimemodule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index 0fc403b..66fb355 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 */ }; /* --------------------------------------------------------------------------- |