Class around PixMap objects that allows more python-like access. By Joe Strout.
[python/dscho.git] / Tools / modulator / Templates / module_method
blob9e6c0d2c12fcf3b84fd11c39a455c2e655d5a00d
2 static char $abbrev$_$method$__doc__[] =
3 ""
6 static PyObject *
7 $abbrev$_$method$(self, args)
8         PyObject *self; /* Not used */
9         PyObject *args;
12         if (!PyArg_ParseTuple(args, ""))
13                 return NULL;
14         Py_INCREF(Py_None);
15         return Py_None;