Lines Matching refs:first
7 PyObject *first; /* first name */
15 Py_XDECREF(self->first);
26 self->first = PyUnicode_FromString("");
27 if (self->first == NULL) {
44 static char *kwlist[] = {"first", "last", "number", NULL};
45 PyObject *first = NULL, *last = NULL, *tmp;
48 &first, &last,
52 if (first) {
53 tmp = self->first;
54 Py_INCREF(first);
55 self->first = first;
68 {"first", T_OBJECT_EX, offsetof(CustomObject, first), 0,
69 "first name"},
80 if (self->first == NULL) {
81 PyErr_SetString(PyExc_AttributeError, "first");
88 return PyUnicode_FromFormat("%S %S", self->first, self->last);
93 "Return the name, combining the first and last name"