1995-03-02 10:05:29 -04:00
|
|
|
|
|
|
|
static $abbrev$object *
|
|
|
|
new$abbrev$object()
|
|
|
|
{
|
|
|
|
$abbrev$object *self;
|
|
|
|
|
1995-05-16 10:47:03 -03:00
|
|
|
self = PyObject_NEW($abbrev$object, &$Abbrev$type);
|
1995-03-02 10:05:29 -04:00
|
|
|
if (self == NULL)
|
|
|
|
return NULL;
|
|
|
|
/* XXXX Add your own initializers here */
|
|
|
|
return self;
|
|
|
|
}
|
1995-05-16 10:47:03 -03:00
|
|
|
|