module_method 223 Bytes
Newer Older
1

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

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

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