summaryrefslogtreecommitdiffstats
path: root/Tools/modulator/Templates/object_tp_dealloc
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/modulator/Templates/object_tp_dealloc')
-rw-r--r--Tools/modulator/Templates/object_tp_dealloc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/modulator/Templates/object_tp_dealloc b/Tools/modulator/Templates/object_tp_dealloc
index b4d573e..ca15c03 100644
--- a/Tools/modulator/Templates/object_tp_dealloc
+++ b/Tools/modulator/Templates/object_tp_dealloc
@@ -4,5 +4,5 @@ $abbrev$_dealloc(self)
$abbrev$object *self;
{
/* XXXX Add your own cleanup code here */
- DEL(self);
+ PyMem_DEL(self);
}