module_method 237 Bytes
Newer Older
1

2 3 4 5
static char $abbrev$_$method$__doc__[] =
""
;

6
static PyObject *
7
$abbrev$_$method$(self, args)
8 9
	PyObject *self;	/* Not used */
	PyObject *args;
10 11
{

12
	if (!PyArg_ParseTuple(args, ""))
13
		return NULL;
14 15
	Py_INCREF(Py_None);
	return Py_None;
16
}