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

static PyObject *
$abbrev$_$method$(self, args)
	$abbrev$object *self;
	PyObject *args;
{
	if (!PyArg_ParseTuple(args, ""))
		return NULL;
	Py_INCREF(Py_None);
	return Py_None;
}