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
- Got rid of newmodule.c
[python/dscho.git]
/
Tools
/
modulator
/
Templates
/
object_method
blob
b15162c317f3a390378795b9a3e5cb9908afa929
1
2
static char $abbrev$_$method$__doc__[] =
3
""
4
;
5
6
static PyObject *
7
$abbrev$_$method$($abbrev$object *self, PyObject *args)
8
{
9
if (!PyArg_ParseTuple(args, ""))
10
return NULL;
11
Py_INCREF(Py_None);
12
return Py_None;
13
}
14