Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method returning
[python.git] / Tools / modulator / Templates / module_method
blob3048b1fc48d34189c533eb2f34e9432bc385f031
2 static char $abbrev$_$method$__doc__[] =
3 ""
6 static PyObject *
7 $abbrev$_$method$(PyObject *self /* Not used */, PyObject *args)
10         if (!PyArg_ParseTuple(args, ""))
11                 return NULL;
12         Py_INCREF(Py_None);
13         return Py_None;