Replaced lots of PyMem_DEL() calls with PyObject_DEL().
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 @@
 	}
 #endif
 		
-	PyMem_DEL(self);
+	PyObject_DEL(self);
 }
 
 statichere PyTypeObject Mfsatype = {
@@ -276,7 +276,7 @@
 static void
 mfsi_dealloc(mfsiobject *self)
 {
-	PyMem_DEL(self);
+	PyObject_DEL(self);
 }
 
 static PyObject *
@@ -700,7 +700,7 @@
 static void
 mfss_dealloc(mfssobject *self)
 {
-	PyMem_DEL(self);
+	PyObject_DEL(self);
 }
 
 static PyObject *
@@ -846,7 +846,7 @@
 static void
 mfsr_dealloc(mfsrobject *self)
 {
-	PyMem_DEL(self);
+	PyObject_DEL(self);
 }
 
 statichere PyTypeObject Mfsrtype = {