summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/calldll.c
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Modules/calldll.c')
-rw-r--r--Mac/Modules/calldll.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Modules/calldll.c b/Mac/Modules/calldll.c
index 8d130ce..e2c2e3e 100644
--- a/Mac/Modules/calldll.c
+++ b/Mac/Modules/calldll.c
@@ -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 *