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

@ -83,7 +83,7 @@ static void HtmlObj_dealloc(self)
HtmlObjectObject *self;
{
/* Cleanup of self->ob_itself goes here */
PyMem_DEL(self);
PyObject_DEL(self);
}
static PyObject *HtmlObj_HRDisposeReference(_self, _args)