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
/
module_method
blob
3048b1fc48d34189c533eb2f34e9432bc385f031
1
2
static char $abbrev$_$method$__doc__[] =
3
""
4
;
5
6
static PyObject *
7
$abbrev$_$method$(PyObject *self /* Not used */, PyObject *args)
8
{
9
10
if (!PyArg_ParseTuple(args, ""))
11
return NULL;
12
Py_INCREF(Py_None);
13
return Py_None;
14
}