openfile(): Go back to opening the files in text mode. This undoes
[python/dscho.git] / Tools / modulator / Templates / object_head
blob07d1f6a9fd65ed089cc87a79e38b64c026cc2b87
2 /* Declarations for objects of type $name$ */
4 typedef struct {
5         PyObject_HEAD
6         /* XXXX Add your own stuff here */
7 } $abbrev$object;
9 static PyTypeObject $Abbrev$type;
13 /* ---------------------------------------------------------------- */