repo.or.cz
/
python
/
dscho.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Files for 2.1b1 distribution.
[python/dscho.git]
/
Tools
/
modulator
/
Templates
/
object_method
blob
95414947c4032ab149024e489ba0e69f67145efa
1
2
static char $abbrev$_$method$__doc__[] =
3
""
4
;
5
6
static PyObject *
7
$abbrev$_$method$(self, args)
8
$abbrev$object *self;
9
PyObject *args;
10
{
11
if (!PyArg_ParseTuple(args, ""))
12
return NULL;
13
Py_INCREF(Py_None);
14
return Py_None;
15
}
16