Lines Matching refs:last
8 PyObject *last; /* last name */ member
16 Py_VISIT(self->last); in Custom_traverse()
24 Py_CLEAR(self->last); in Custom_clear()
47 self->last = PyUnicode_FromString(""); in Custom_new()
48 if (self->last == NULL) { in Custom_new()
61 PyObject *first = NULL, *last = NULL, *tmp; in Custom_init() local
64 &first, &last, in Custom_init()
74 if (last) { in Custom_init()
75 tmp = self->last; in Custom_init()
76 Py_INCREF(last); in Custom_init()
77 self->last = last; in Custom_init()
117 Py_INCREF(self->last); in Custom_getlast()
118 return self->last; in Custom_getlast()
134 Py_CLEAR(self->last); in Custom_setlast()
135 self->last = value; in Custom_setlast()
150 return PyUnicode_FromFormat("%S %S", self->first, self->last); in Custom_name()