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
fix to work on python <= 2.1
[python/dscho.git]
/
Tools
/
modulator
/
Templates
/
object_head
blob
07d1f6a9fd65ed089cc87a79e38b64c026cc2b87
1
2
/* Declarations for objects of type $name$ */
3
4
typedef struct {
5
PyObject_HEAD
6
/* XXXX Add your own stuff here */
7
} $abbrev$object;
8
9
static PyTypeObject $Abbrev$type;
10
11
12
13
/* ---------------------------------------------------------------- */