mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Replaced lots of PyMem_DEL() calls with PyObject_DEL().
This commit is contained in:
parent
422cdde69a
commit
0e2f798301
9 changed files with 16 additions and 16 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue