mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
12 lines
190 B
Text
12 lines
190 B
Text
|
|
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;
|
|
}
|