Exemplo n.º 1
0
static void
LFO_dealloc(LFO* self)
{
    pyo_DEALLOC
    LFO_clear(self);
    self->ob_type->tp_free((PyObject*)self);
}
Exemplo n.º 2
0
static void
LFO_dealloc(LFO* self)
{
    pyo_DEALLOC
    LFO_clear(self);
    Py_TYPE(self)->tp_free((PyObject*)self);
}
Exemplo n.º 3
0
static void
LFO_dealloc(LFO* self)
{
    free(self->data);
    LFO_clear(self);
    self->ob_type->tp_free((PyObject*)self);
}