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
py-cvs-rel2_1 (Rev 1.2) merge
[python/dscho.git]
/
Tools
/
modulator
/
Templates
/
object_new
blob
30c5e363e61c61f8570a1a14b3fda01fd1b6885b
1
2
static $abbrev$object *
3
new$abbrev$object()
4
{
5
$abbrev$object *self;
6
7
self = PyObject_NEW($abbrev$object, &$Abbrev$type);
8
if (self == NULL)
9
return NULL;
10
/* XXXX Add your own initializers here */
11
return self;
12
}
13