Home | History | Annotate | Download | only in includes

Lines Matching defs:last

7     PyObject *last;
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;
110 Py_INCREF(self->last);
111 return self->last;
118 PyErr_SetString(PyExc_TypeError, "Cannot delete the last attribute");
124 "The last attribute value must be a string");
128 Py_DECREF(self->last);
130 self->last = value;
140 {"last",
142 "last name",
150 return PyUnicode_FromFormat("%S %S", self->first, self->last);
155 "Return the name, combining the first and last name"