cpython/Tools/modulator/Templates/module_method

13 lines
190 B
Plaintext
Raw Normal View History

1995-03-02 10:05:29 -04:00
static PyObject *
1995-03-02 10:05:29 -04:00
$abbrev$_$method$(self, args)
PyObject *self; /* Not used */
PyObject *args;
1995-03-02 10:05:29 -04:00
{
if (!PyArg_ParseTuple(args, ""))
1995-03-02 10:05:29 -04:00
return NULL;
Py_INCREF(Py_None);
return Py_None;
1995-03-02 10:05:29 -04:00
}