Home | History | Annotate | Download | only in includes

Lines Matching defs:last

7     PyObject *last;  /* last name */
15 Py_XDECREF(self->last);
32 self->last = PyUnicode_FromString("");
33 if (self->last == NULL) {
47 PyObject *first=NULL, *last=NULL, *tmp;
49 static char *kwlist[] = {"first", "last", "number", NULL};
52 &first, &last,
63 if (last) {
64 tmp = self->last;
65 Py_INCREF(last);
66 self->last = last;
77 {"last", T_OBJECT_EX, offsetof(Noddy, last), 0,
78 "last name"},
92 if (self->last == NULL) {
93 PyErr_SetString(PyExc_AttributeError, "last");
97 return PyUnicode_FromFormat("%S %S", self->first, self->last);
102 "Return the name, combining the first and last name"