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;
66 self->last = PyUnicode_FromString("");
67 if (self->last == NULL) {
81 PyObject *first=NULL, *last=NULL, *tmp;
83 static char *kwlist[] = {"first", "last", "number", NULL};
86 &first, &last,
97 if (last) {
98 tmp = self->last;
99 Py_INCREF(last);
100 self->last = last;
111 {"last", T_OBJECT_EX, offsetof(Noddy, last), 0,
112 "last name"},
126 if (self->last == NULL) {
127 PyErr_SetString(PyExc_AttributeError, "last");
131 return PyUnicode_FromFormat("%S %S", self->first, self->last);
136 "Return the name, combining the first and last name"