1995-03-02 14:05:29 +00:00
|
|
|
|
1995-06-20 12:26:03 +00:00
|
|
|
static char $abbrev$_$method$__doc__[] =
|
|
|
|
""
|
|
|
|
;
|
|
|
|
|
1995-05-16 13:47:03 +00:00
|
|
|
static PyObject *
|
1995-03-02 14:05:29 +00:00
|
|
|
$abbrev$_$method$(self, args)
|
1995-05-16 13:47:03 +00:00
|
|
|
PyObject *self; /* Not used */
|
|
|
|
PyObject *args;
|
1995-03-02 14:05:29 +00:00
|
|
|
{
|
|
|
|
|
1995-05-16 13:47:03 +00:00
|
|
|
if (!PyArg_ParseTuple(args, ""))
|
1995-03-02 14:05:29 +00:00
|
|
|
return NULL;
|
1995-05-16 13:47:03 +00:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1995-03-02 14:05:29 +00:00
|
|
|
}
|