cpython/Tools/modulator/Templates/object_tp_getattr

10 lines
189 B
Plaintext
Raw Normal View History

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