Searched refs:PyObject_HasAttrWithError (Results 1 – 21 of 21) sorted by relevance
/external/python/cpython3/Objects/ |
D | unionobject.c | 196 if ((rc = PyObject_HasAttrWithError(p, &_Py_ID(__origin__))) > 0 && in union_repr_item() 197 (rc = PyObject_HasAttrWithError(p, &_Py_ID(__args__))) > 0) in union_repr_item()
|
D | genericaliasobject.c | 67 if ((rc = PyObject_HasAttrWithError(p, &_Py_ID(__origin__))) > 0 && in ga_repr_item() 68 (rc = PyObject_HasAttrWithError(p, &_Py_ID(__args__))) > 0) in ga_repr_item() 255 int rc = PyObject_HasAttrWithError(t, &_Py_ID(__typing_subst__)); in _Py_make_parameters()
|
D | object.c | 1346 PyObject_HasAttrWithError(PyObject *obj, PyObject *name) in PyObject_HasAttrWithError() function 1357 int rc = PyObject_HasAttrWithError(obj, name); in PyObject_HasAttr()
|
D | dictobject.c | 3534 int has_keys = PyObject_HasAttrWithError(arg, &_Py_ID(keys)); in dict_update_arg()
|
D | typeobject.c | 4216 int rc = PyObject_HasAttrWithError(base, &_Py_ID(__mro_entries__)); in type_new_get_bases()
|
/external/python/cpython3/Modules/_testcapi/ |
D | abstract.c | 65 RETURN_INT(PyObject_HasAttrWithError(obj, attr_name)); in object_hasattrwitherror()
|
/external/python/cpython3/Doc/c-api/ |
D | object.rst | 88 .. c:function:: int PyObject_HasAttrWithError(PyObject *o, PyObject *attr_name) 99 This is the same as :c:func:`PyObject_HasAttrWithError`, but *attr_name* is 115 For proper error handling, use :c:func:`PyObject_HasAttrWithError`,
|
/external/python/cpython3/Modules/_io/ |
D | iobase.c | 79 return PyObject_HasAttrWithError(self, &_Py_ID(__IOBase_closed)); in iobase_is_closed()
|
D | textio.c | 1237 r = PyObject_HasAttrWithError(buffer, &_Py_ID(read1)); in _io_TextIOWrapper___init___impl()
|
/external/python/cpython3/Modules/_ctypes/ |
D | stgdict.c | 257 int rc = PyObject_HasAttrWithError(type, &_Py_ID(_swappedbytes_)); in PyCStructUnionType_update_stginfo()
|
/external/python/cpython3/Python/ |
D | errors.c | 1793 int rc = PyObject_HasAttrWithError(exc, &_Py_ID(msg)); in PyErr_SyntaxLocationObjectEx() 1810 rc = PyObject_HasAttrWithError(exc, &_Py_ID(print_file_and_line)); in PyErr_SyntaxLocationObjectEx()
|
D | import.c | 3837 int has_path = PyObject_HasAttrWithError(mod, &_Py_ID(__path__)); in PyImport_ImportModuleLevelObject()
|
/external/python/cpython3/Include/ |
D | object.h | 581 PyAPI_FUNC(int) PyObject_HasAttrWithError(PyObject *, PyObject *);
|
/external/python/cpython3/PC/ |
D | python3dll.c | 498 EXPORT_FUNC(PyObject_HasAttrWithError)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 540 func,PyObject_HasAttrWithError,3.13,,
|
D | python3.13.abi | 604 …<elf-symbol name='PyObject_HasAttrWithError' type='func-type' binding='global-binding' visibility=… 7444 …PyObject_HasAttrWithError' mangled-name='PyObject_HasAttrWithError' filepath='./Include/object.h' …
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 2454 [function.PyObject_HasAttrWithError]
|
/external/python/cpython3/Modules/ |
D | _elementtree.c | 3528 else if (PyObject_HasAttrWithError((PyObject *)self, st->str_doctype) > 0) { in expat_start_doctype_handler()
|
D | _pickle.c | 5780 int rc = PyObject_HasAttrWithError(cls, &_Py_ID(__getinitargs__)); in instantiate()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.13.rst | 2181 * :c:func:`PyObject_HasAttrWithError` replaces :c:func:`PyObject_HasAttr`.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.13.0a1.rst | 6209 Add functions :c:func:`PyObject_HasAttrWithError`,
|