Files for 2.1b1 distribution.
[python/dscho.git] / Tools / modulator / Templates / object_method
blob95414947c4032ab149024e489ba0e69f67145efa
2 static char $abbrev$_$method$__doc__[] = 
3 ""
6 static PyObject *
7 $abbrev$_$method$(self, args)
8         $abbrev$object *self;
9         PyObject *args;
11         if (!PyArg_ParseTuple(args, ""))
12                 return NULL;
13         Py_INCREF(Py_None);
14         return Py_None;