Home
last modified time | relevance | path

Searched refs:PyAttributeErrorObject (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Python/
Dsuggestions.c178 offer_suggestions_for_attribute_error(PyAttributeErrorObject *exc) in offer_suggestions_for_attribute_error()
273 result = offer_suggestions_for_attribute_error((PyAttributeErrorObject *) exception); in _Py_Offer_Suggestions()
/third_party/python/Include/cpython/
Dpyerrors.h82 } PyAttributeErrorObject; typedef
/third_party/python/Objects/
Dexceptions.c2255 AttributeError_init(PyAttributeErrorObject *self, PyObject *args, PyObject *kwds) in AttributeError_init()
2286 AttributeError_clear(PyAttributeErrorObject *self) in AttributeError_clear()
2294 AttributeError_dealloc(PyAttributeErrorObject *self) in AttributeError_dealloc()
2302 AttributeError_traverse(PyAttributeErrorObject *self, visitproc visit, void *arg) in AttributeError_traverse()
2310 {"name", T_OBJECT, offsetof(PyAttributeErrorObject, name), 0, PyDoc_STR("attribute name")},
2311 {"obj", T_OBJECT, offsetof(PyAttributeErrorObject, obj), 0, PyDoc_STR("object")},
Dobject.c888 PyAttributeErrorObject* the_exc = (PyAttributeErrorObject*) value; in set_attribute_error_context()