Home | History | Annotate | Download | only in includes

Lines Matching defs:first

6     PyObject *first; /* first name */
14 Py_XDECREF(self->first);
26 self->first = PyString_FromString("");
27 if (self->first == NULL)
49 PyObject *first=NULL, *last=NULL, *tmp;
51 static char *kwlist[] = {"first", "last", "number", NULL};
54 &first, &last,
58 if (first) {
59 tmp = self->first;
60 Py_INCREF(first);
61 self->first = first;
77 {"first", T_OBJECT_EX, offsetof(Noddy, first), 0,
78 "first name"},
98 if (self->first == NULL) {
99 PyErr_SetString(PyExc_AttributeError, "first");
108 args = Py_BuildValue("OO", self->first, self->last);
120 "Return the name, combining the first and last name"