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

static char $abbrev$_$method$__doc__[] = 
""
;

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