0
0
mirror of https://github.com/python/cpython.git synced 2024-11-29 00:56:12 +01:00
cpython/Tools/modulator/Templates/object_tp_dealloc

9 lines
124 B
Plaintext

static void
$abbrev$_dealloc(self)
$abbrev$object *self;
{
/* XXXX Add your own cleanup code here */
PyMem_DEL(self);
}