summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/htmlrender
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-05-22 14:31:48 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-05-22 14:31:48 (GMT)
commit0e2f79830173ccd00bc113a42d951c139deca040 (patch)
treef02af083636eb85c42562c81aa9f6024847e35fe /Mac/Modules/htmlrender
parent422cdde69ada560ea4713d64fe0c5319a4f6e200 (diff)
downloadcpython-0e2f79830173ccd00bc113a42d951c139deca040.zip
cpython-0e2f79830173ccd00bc113a42d951c139deca040.tar.gz
cpython-0e2f79830173ccd00bc113a42d951c139deca040.tar.bz2
Replaced lots of PyMem_DEL() calls with PyObject_DEL().
Diffstat (limited to 'Mac/Modules/htmlrender')
-rw-r--r--Mac/Modules/htmlrender/HtmlRendermodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/htmlrender/HtmlRendermodule.c b/Mac/Modules/htmlrender/HtmlRendermodule.c
index 8015ab8..08df21f 100644
--- a/Mac/Modules/htmlrender/HtmlRendermodule.c
+++ b/Mac/Modules/htmlrender/HtmlRendermodule.c
@@ -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)