summaryrefslogtreecommitdiffstats
path: root/Tools/modulator/Templates/module_method
blob: bf64e79f8aae9cbbfedbfabbcd664f45a49d9047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

static object *
$abbrev$_$method$(self, args)
	object *self;	/* Not used */
	object *args;
{

	if (!newgetargs(args, ""))
		return NULL;
	INCREF(None);
	return None;
}