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