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

12 lines
169 B
Text

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