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

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

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;
}