summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/ctl
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-04-23 22:46:01 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-04-23 22:46:01 (GMT)
commit033b79c483566661eda1a87a11f19619d1ff4046 (patch)
treee26c05a1dd88b4af2dc80b7681e3973dec1a50a4 /Mac/Modules/ctl
parentf16951cffe9e4171769213bbe1aecec3d8f5200a (diff)
downloadcpython-033b79c483566661eda1a87a11f19619d1ff4046.zip
cpython-033b79c483566661eda1a87a11f19619d1ff4046.tar.gz
cpython-033b79c483566661eda1a87a11f19619d1ff4046.tar.bz2
Regenerated.
Diffstat (limited to 'Mac/Modules/ctl')
-rw-r--r--Mac/Modules/ctl/_Ctlmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/ctl/_Ctlmodule.c b/Mac/Modules/ctl/_Ctlmodule.c
index cf1c459..c9a8aa4 100644
--- a/Mac/Modules/ctl/_Ctlmodule.c
+++ b/Mac/Modules/ctl/_Ctlmodule.c
@@ -183,7 +183,7 @@ static void CtlObj_dealloc(ControlObject *self)
{
Py_XDECREF(self->ob_callbackdict);
if (self->ob_itself)SetControlReference(self->ob_itself, (long)0); /* Make it forget about us */
- PyMem_DEL(self);
+ PyObject_Del(self);
}
static PyObject *CtlObj_HiliteControl(ControlObject *_self, PyObject *_args)