Home | History | Annotate | Download | only in includes

Lines Matching full:last

7     PyObject *last;
21 if (self->last) {
22 vret = visit(self->last, arg);
39 tmp = self->last;
40 self->last = NULL;
67 self->last = PyString_FromString("");
68 if (self->last == NULL)
83 PyObject *first=NULL, *last=NULL, *tmp;
85 static char *kwlist[] = {"first", "last", "number", NULL};
88 &first, &last,
99 if (last) {
100 tmp = self->last;
101 Py_INCREF(last);
102 self->last = last;
113 {"last", T_OBJECT_EX, offsetof(Noddy, last), 0,
114 "last name"},
137 if (self->last == NULL) {
138 PyErr_SetString(PyExc_AttributeError, "last");
142 args = Py_BuildValue("OO", self->first, self->last);
154 "Return the name, combining the first and last name"