diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-05-22 14:31:48 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-05-22 14:31:48 (GMT) |
commit | 0e2f79830173ccd00bc113a42d951c139deca040 (patch) | |
tree | f02af083636eb85c42562c81aa9f6024847e35fe /Mac/Modules/macfsmodule.c | |
parent | 422cdde69ada560ea4713d64fe0c5319a4f6e200 (diff) | |
download | cpython-0e2f79830173ccd00bc113a42d951c139deca040.zip cpython-0e2f79830173ccd00bc113a42d951c139deca040.tar.gz cpython-0e2f79830173ccd00bc113a42d951c139deca040.tar.bz2 |
Replaced lots of PyMem_DEL() calls with PyObject_DEL().
Diffstat (limited to 'Mac/Modules/macfsmodule.c')
-rw-r--r-- | Mac/Modules/macfsmodule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/Modules/macfsmodule.c b/Mac/Modules/macfsmodule.c index 9179c36..a251811 100644 --- a/Mac/Modules/macfsmodule.c +++ b/Mac/Modules/macfsmodule.c @@ -227,7 +227,7 @@ mfsa_dealloc(mfsaobject *self) } #endif - PyMem_DEL(self); + PyObject_DEL(self); } statichere PyTypeObject Mfsatype = { @@ -276,7 +276,7 @@ newmfsiobject(void) static void mfsi_dealloc(mfsiobject *self) { - PyMem_DEL(self); + PyObject_DEL(self); } static PyObject * @@ -700,7 +700,7 @@ newmfssobject(FSSpec *fss) static void mfss_dealloc(mfssobject *self) { - PyMem_DEL(self); + PyObject_DEL(self); } static PyObject * @@ -846,7 +846,7 @@ mfsr_compare(mfsrobject *v, mfsrobject *w) static void mfsr_dealloc(mfsrobject *self) { - PyMem_DEL(self); + PyObject_DEL(self); } statichere PyTypeObject Mfsrtype = { |