Lines Matching refs:last
7 PyObject *last; member
15 Py_XDECREF(self->last); in Noddy_dealloc()
32 self->last = PyString_FromString(""); in Noddy_new()
33 if (self->last == NULL) { in Noddy_new()
47 PyObject *first=NULL, *last=NULL, *tmp; in Noddy_init() local
52 &first, &last, in Noddy_init()
63 if (last) { in Noddy_init()
64 tmp = self->last; in Noddy_init()
65 Py_INCREF(last); in Noddy_init()
66 self->last = last; in Noddy_init()
110 Py_INCREF(self->last); in Noddy_getlast()
111 return self->last; in Noddy_getlast()
128 Py_DECREF(self->last); in Noddy_setlast()
130 self->last = value; in Noddy_setlast()
159 args = Py_BuildValue("OO", self->first, self->last); in Noddy_name()