Replaced lots of PyMem_DEL() calls with PyObject_DEL().

This commit is contained in:
Jack Jansen 2002-05-22 14:31:48 +00:00
parent 422cdde69a
commit 0e2f798301
9 changed files with 16 additions and 16 deletions

View file

@ -543,7 +543,7 @@ static void
cdr_dealloc(self)
cdrobject *self;
{
PyMem_DEL(self);
PyObject_DEL(self);
}
static PyObject *
@ -631,7 +631,7 @@ cdc_dealloc(self)
cdcobject *self;
{
Py_XDECREF(self->routine);
PyMem_DEL(self);
PyObject_DEL(self);
}
@ -855,7 +855,7 @@ static void
cdf_dealloc(self)
cdfobject *self;
{
PyMem_DEL(self);
PyObject_DEL(self);
}
static PyObject *