Lines Matching refs:PyObject
6 PyObject *first; /* first name */
7 PyObject *last; /* last name */
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;
86 static PyObject *
89 static PyObject *format = NULL;
90 PyObject *args, *result;
177 PyObject* m;
189 PyModule_AddObject(m, "Noddy", (PyObject *)&NoddyType);