cpython/Tools/modulator/Templates/object_tp_dealloc

8 lines
117 B
Plaintext
Raw Normal View History

1995-03-02 10:05:29 -04:00
static void
$abbrev$_dealloc($abbrev$object *self)
1995-03-02 10:05:29 -04:00
{
/* XXXX Add your own cleanup code here */
PyMem_DEL(self);
1995-03-02 10:05:29 -04:00
}