Home
last modified time | relevance | path

Searched refs:PyObject_HasAttrWithError (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Objects/
Dunionobject.c196 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()
Dgenericaliasobject.c67 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()
Dobject.c1346 PyObject_HasAttrWithError(PyObject *obj, PyObject *name) in PyObject_HasAttrWithError() function
1357 int rc = PyObject_HasAttrWithError(obj, name); in PyObject_HasAttr()
Ddictobject.c3534 int has_keys = PyObject_HasAttrWithError(arg, &_Py_ID(keys)); in dict_update_arg()
Dtypeobject.c4216 int rc = PyObject_HasAttrWithError(base, &_Py_ID(__mro_entries__)); in type_new_get_bases()
/external/python/cpython3/Modules/_testcapi/
Dabstract.c65 RETURN_INT(PyObject_HasAttrWithError(obj, attr_name)); in object_hasattrwitherror()
/external/python/cpython3/Doc/c-api/
Dobject.rst88 .. 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/
Diobase.c79 return PyObject_HasAttrWithError(self, &_Py_ID(__IOBase_closed)); in iobase_is_closed()
Dtextio.c1237 r = PyObject_HasAttrWithError(buffer, &_Py_ID(read1)); in _io_TextIOWrapper___init___impl()
/external/python/cpython3/Modules/_ctypes/
Dstgdict.c257 int rc = PyObject_HasAttrWithError(type, &_Py_ID(_swappedbytes_)); in PyCStructUnionType_update_stginfo()
/external/python/cpython3/Python/
Derrors.c1793 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()
Dimport.c3837 int has_path = PyObject_HasAttrWithError(mod, &_Py_ID(__path__)); in PyImport_ImportModuleLevelObject()
/external/python/cpython3/Include/
Dobject.h581 PyAPI_FUNC(int) PyObject_HasAttrWithError(PyObject *, PyObject *);
/external/python/cpython3/PC/
Dpython3dll.c498 EXPORT_FUNC(PyObject_HasAttrWithError)
/external/python/cpython3/Doc/data/
Dstable_abi.dat540 func,PyObject_HasAttrWithError,3.13,,
Dpython3.13.abi604 …<elf-symbol name='PyObject_HasAttrWithError' type='func-type' binding='global-binding' visibility=…
7444PyObject_HasAttrWithError' mangled-name='PyObject_HasAttrWithError' filepath='./Include/object.h' …
/external/python/cpython3/Misc/
Dstable_abi.toml2454 [function.PyObject_HasAttrWithError]
/external/python/cpython3/Modules/
D_elementtree.c3528 else if (PyObject_HasAttrWithError((PyObject *)self, st->str_doctype) > 0) { in expat_start_doctype_handler()
D_pickle.c5780 int rc = PyObject_HasAttrWithError(cls, &_Py_ID(__getinitargs__)); in instantiate()
/external/python/cpython3/Doc/whatsnew/
D3.13.rst2181 * :c:func:`PyObject_HasAttrWithError` replaces :c:func:`PyObject_HasAttr`.
/external/python/cpython3/Misc/NEWS.d/
D3.13.0a1.rst6209 Add functions :c:func:`PyObject_HasAttrWithError`,