summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/icgluemodule.c
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/icgluemodule.c
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/icgluemodule.c')
-rw-r--r--Mac/Modules/icgluemodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/icgluemodule.c b/Mac/Modules/icgluemodule.c
index 3061f98..1368ff2 100644
--- a/Mac/Modules/icgluemodule.c
+++ b/Mac/Modules/icgluemodule.c
@@ -460,7 +460,7 @@ newiciobject(OSType creator)
return NULL;
if ((err=ICStart(&self->inst, creator)) != 0 ) {
(void)PyMac_Error(err);
- PyMem_DEL(self);
+ PyObject_DEL(self);
return NULL;
}
return self;
@@ -471,7 +471,7 @@ static void
ici_dealloc(iciobject *self)
{
(void)ICStop(self->inst);
- PyMem_DEL(self);
+ PyObject_DEL(self);
}
static PyObject *