Esempio n. 1
0
static void
Dummy_dealloc(Dummy* self)
{
    pyo_DEALLOC
    Dummy_clear(self);
    self->ob_type->tp_free((PyObject*)self);
}
Esempio n. 2
0
static void
Dummy_dealloc(Dummy* self)
{
    pyo_DEALLOC
    Dummy_clear(self);
    Py_TYPE(self)->tp_free((PyObject*)self);
}