blob: 9e6fa5eeac039e5b556849a118b483b87e3d21dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Declarations for objects of type $name$ */
typedef struct {
PyObject_HEAD
/* XXXX Add your own stuff here */
} $abbrev$object;
staticforward PyTypeObject $Abbrev$type;
/* ---------------------------------------------------------------- */
|