cpython/Tools/modulator/Templates/module_method

13 lines
169 B
Plaintext

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