diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-23 22:46:01 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-23 22:46:01 (GMT) |
commit | 033b79c483566661eda1a87a11f19619d1ff4046 (patch) | |
tree | e26c05a1dd88b4af2dc80b7681e3973dec1a50a4 /Mac/Modules/cm | |
parent | f16951cffe9e4171769213bbe1aecec3d8f5200a (diff) | |
download | cpython-033b79c483566661eda1a87a11f19619d1ff4046.zip cpython-033b79c483566661eda1a87a11f19619d1ff4046.tar.gz cpython-033b79c483566661eda1a87a11f19619d1ff4046.tar.bz2 |
Regenerated.
Diffstat (limited to 'Mac/Modules/cm')
-rw-r--r-- | Mac/Modules/cm/_Cmmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/cm/_Cmmodule.c b/Mac/Modules/cm/_Cmmodule.c index d148f77..d0da473 100644 --- a/Mac/Modules/cm/_Cmmodule.c +++ b/Mac/Modules/cm/_Cmmodule.c @@ -102,7 +102,7 @@ int CmpInstObj_Convert(PyObject *v, ComponentInstance *p_itself) static void CmpInstObj_dealloc(ComponentInstanceObject *self) { /* Cleanup of self->ob_itself goes here */ - PyMem_DEL(self); + PyObject_Del(self); } static PyObject *CmpInstObj_CloseComponent(ComponentInstanceObject *_self, PyObject *_args) @@ -384,7 +384,7 @@ int CmpObj_Convert(PyObject *v, Component *p_itself) static void CmpObj_dealloc(ComponentObject *self) { /* Cleanup of self->ob_itself goes here */ - PyMem_DEL(self); + PyObject_Del(self); } static PyObject *CmpObj_UnregisterComponent(ComponentObject *_self, PyObject *_args) |