cpython/Tools/modulator/Templates/object_method

12 lines
161 B
Plaintext

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