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

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

	if (!PyArg_ParseTuple(args, ""))
		return NULL;
	Py_INCREF(Py_None);
	return Py_None;
}