summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/scrap
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/scrap
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/scrap')
-rw-r--r--Mac/Modules/scrap/_Scrapmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/scrap/_Scrapmodule.c b/Mac/Modules/scrap/_Scrapmodule.c
index cc48a81..4b3d865 100644
--- a/Mac/Modules/scrap/_Scrapmodule.c
+++ b/Mac/Modules/scrap/_Scrapmodule.c
@@ -78,7 +78,7 @@ int ScrapObj_Convert(PyObject *v, ScrapRef *p_itself)
static void ScrapObj_dealloc(ScrapObject *self)
{
/* Cleanup of self->ob_itself goes here */
- PyMem_DEL(self);
+ PyObject_DEL(self);
}
static PyObject *ScrapObj_GetScrapFlavorFlags(ScrapObject *_self, PyObject *_args)