Templates converted to new naming conventions (thanks to Chak Tan)

This commit is contained in:
Jack Jansen 1995-05-16 13:47:03 +00:00
parent 52e02998ef
commit ebed75116f
17 changed files with 100 additions and 131 deletions

View file

@ -1,12 +1,12 @@
static object *
static PyObject *
$abbrev$_$method$(self, args)
object *self; /* Not used */
object *args;
PyObject *self; /* Not used */
PyObject *args;
{
if (!newgetargs(args, ""))
if (!PyArg_ParseTuple(args, ""))
return NULL;
INCREF(None);
return None;
Py_INCREF(Py_None);
return Py_None;
}