Home | History | Annotate | Download | only in includes

Lines Matching defs:first

6     PyObject *first;
16 if (self->first) {
17 vret = visit(self->first, arg);
35 tmp = self->first;
36 self->first = NULL;
60 self->first = PyString_FromString("");
61 if (self->first == NULL)
83 PyObject *first=NULL, *last=NULL, *tmp;
85 static char *kwlist[] = {"first", "last", "number", NULL};
88 &first, &last,
92 if (first) {
93 tmp = self->first;
94 Py_INCREF(first);
95 self->first = first;
111 {"first", T_OBJECT_EX, offsetof(Noddy, first), 0,
112 "first name"},
132 if (self->first == NULL) {
133 PyErr_SetString(PyExc_AttributeError, "first");
142 args = Py_BuildValue("OO", self->first, self->last);
154 "Return the name, combining the first and last name"