Home | History | Annotate | Download | only in includes

Lines Matching full:last

7     PyObject *last;
15 Py_XDECREF(self->last);
33 self->last = PyString_FromString("");
34 if (self->last == NULL)
49 PyObject *first=NULL, *last=NULL, *tmp;
51 static char *kwlist[] = {"first", "last", "number", NULL};
54 &first, &last,
65 if (last) {
66 tmp = self->last;
67 Py_INCREF(last);
68 self->last = last;
112 Py_INCREF(self->last);
113 return self->last;
120 PyErr_SetString(PyExc_TypeError, "Cannot delete the last attribute");
126 "The last attribute value must be a string");
130 Py_DECREF(self->last);
132 self->last = value;
142 {"last",
144 "last name",
161 args = Py_BuildValue("OO", self->first, self->last);
173 "Return the name, combining the first and last name"