Lines Matching refs:PyObject
6 PyObject *first;
7 PyObject *last;
16 self->ob_type->tp_free((PyObject*)self);
19 static PyObject *
20 Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
43 return (PyObject *)self;
47 Noddy_init(Noddy *self, PyObject *args, PyObject *kwds)
49 PyObject *first=NULL, *last=NULL, *tmp;
81 static PyObject *
89 Noddy_setfirst(Noddy *self, PyObject *value, void *closure)
109 static PyObject *
117 Noddy_setlast(Noddy *self, PyObject *value, void *closure)
149 static PyObject *
152 static PyObject *format = NULL;
153 PyObject *args, *result;
230 PyObject* m;
242 PyModule_AddObject(m, "Noddy", (PyObject *)&NoddyType);