1995-03-02 10:05:29 -04:00
|
|
|
|
1995-06-20 09:26:03 -03:00
|
|
|
static char $abbrev$_$method$__doc__[] =
|
|
|
|
""
|
|
|
|
;
|
|
|
|
|
1995-05-16 10:47:03 -03:00
|
|
|
static PyObject *
|
1995-03-02 10:05:29 -04:00
|
|
|
$abbrev$_$method$(self, args)
|
|
|
|
$abbrev$object *self;
|
1995-05-16 10:47:03 -03:00
|
|
|
PyObject *args;
|
1995-03-02 10:05:29 -04:00
|
|
|
{
|
1995-05-16 10:47:03 -03:00
|
|
|
if (!PyArg_ParseTuple(args, ""))
|
1995-03-02 10:05:29 -04:00
|
|
|
return NULL;
|
1995-05-16 10:47:03 -03:00
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
1995-03-02 10:05:29 -04:00
|
|
|
}
|
1995-05-16 10:47:03 -03:00
|
|
|
|