cpython/Tools/modulator/Templates/object_method
1995-03-02 14:05:29 +00:00

11 lines
161 B
Text

static object *
$abbrev$_$method$(self, args)
$abbrev$object *self;
object *args;
{
if (!newgetargs(args, ""))
return NULL;
INCREF(None);
return None;
}