Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 5927786e61c62bd6b28031f5f9b851411cf1cb00 authored by Barry Warsaw on 01 October 2008, 22:05:43 UTC
Today is the release date
Tip revision: 5927786
module_method

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

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

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