cpython/Tools/modulator/Templates/object_tp_getattr

8 lines
182 B
Plaintext
Raw Normal View History

1995-03-02 10:05:29 -04:00
static PyObject *
$abbrev$_getattr($abbrev$object *self, char *name)
1995-03-02 10:05:29 -04:00
{
/* XXXX Add your own getattr code here */
return Py_FindMethod($abbrev$_methods, (PyObject *)self, name);
1995-03-02 10:05:29 -04:00
}