cpython/Tools/modulator/Templates/object_method

12 lines
161 B
Plaintext
Raw Normal View History

1995-03-02 10:05:29 -04:00
static object *
$abbrev$_$method$(self, args)
$abbrev$object *self;
object *args;
{
if (!newgetargs(args, ""))
return NULL;
INCREF(None);
return None;
}