Lines Matching defs:doc
2395 PyObject* doc;
2403 doc: object
2408 tuplegetter_new_impl(PyTypeObject *type, Py_ssize_t index, PyObject *doc)
2417 Py_INCREF(doc);
2418 self->doc = doc;
2470 Py_VISIT(tuplegetter->doc);
2478 Py_CLEAR(tuplegetter->doc);
2493 return Py_BuildValue("(O(nO))", (PyObject*) Py_TYPE(self), self->index, self->doc);
2501 self->index, self->doc);
2506 {"__doc__", T_OBJECT, offsetof(_tuplegetterobject, doc), 0},