Home
last modified time | relevance | path

Searched refs:PyDict_GetItemWithError (Results 1 – 25 of 41) sorted by relevance

12

/third_party/python/Include/cpython/
Dodictobject.h32 PyDict_GetItemWithError(_PyObject_CAST(od), key)
/third_party/python/Modules/_sqlite/
Dmicroprotocols.c92 adapter = PyDict_GetItemWithError(psyco_adapters, key); in pysqlite_microprotocols_adapt()
Dcache.c163 node = (pysqlite_Node*)PyDict_GetItemWithError(self->mapping, key); in pysqlite_cache_get()
Dstatement.c313 PyObject *item = PyDict_GetItemWithError(parameters, binding_name_obj); in pysqlite_statement_bind_parameters()
Dcursor.c147 retval = PyDict_GetItemWithError(_pysqlite_converters, upcase_key); in _pysqlite_get_converter()
/third_party/python/Include/
Ddictobject.h23 PyAPI_FUNC(PyObject *) PyDict_GetItemWithError(PyObject *mp, PyObject *key);
/third_party/python/Doc/c-api/
Ddict.rst103 To get error reporting use :c:func:`PyDict_GetItemWithError()` instead.
110 .. c:function:: PyObject* PyDict_GetItemWithError(PyObject *p, PyObject *key)
126 To get error reporting use :c:func:`PyDict_GetItemWithError()` instead.
/third_party/python/Objects/
Dnamespaceobject.c103 value = PyDict_GetItemWithError(d, key); in namespace_repr()
Dstructseq.c36 PyObject *v = PyDict_GetItemWithError(tp->tp_dict, name); in get_type_attr_as_size()
Dobject.c1163 attr = PyDict_GetItemWithError(dict, name); in _PyObject_GetMethod()
1274 res = PyDict_GetItemWithError(dict, name); in _PyObject_GenericGetAttrWithDict()
/third_party/python/Modules/
Dxxmodule.c69 PyObject *v = PyDict_GetItemWithError(self->x_attr, name); in Xxo_getattro()
Dxxlimited_35.c84 PyObject *v = PyDict_GetItemWithError(self->x_attr, name); in Xxo_getattro()
Dxxlimited.c139 PyObject *v = PyDict_GetItemWithError(self->x_attr, name); in Xxo_getattro()
D_threadmodule.c903 PyObject *dummy = PyDict_GetItemWithError(tdict, self->key); in _ldict()
1017 PyObject *value = PyDict_GetItemWithError(ldict, name); in local_getattro()
1045 ldict = PyDict_GetItemWithError(self->dummies, dummyweakref); in _localdummy_destroyed()
D_testmultiphase.c74 PyObject *v = PyDict_GetItemWithError(self->x_attr, name); in Example_getattro()
D_pickle.c3521 item = PyDict_GetItemWithError(st->name_mapping_3to2, key); in fix_imports()
3558 item = PyDict_GetItemWithError(st->import_mapping_3to2, *module_name); in fix_imports()
3663 code_obj = PyDict_GetItemWithError(st->extension_registry, in save_global()
4381 reduce_func = PyDict_GetItemWithError(st->dispatch_table, in save()
6286 obj = PyDict_GetItemWithError(st->extension_cache, py_code); in load_extension()
6299 pair = PyDict_GetItemWithError(st->inverted_registry, py_code); in load_extension()
7057 item = PyDict_GetItemWithError(st->name_mapping_2to3, key); in _pickle_Unpickler_find_class_impl()
7083 item = PyDict_GetItemWithError(st->import_mapping_2to3, module_name); in _pickle_Unpickler_find_class_impl()
D_elementtree.c351 PyObject *attrib = PyDict_GetItemWithError(kwds, attrib_str); in get_attrib_from_keywords()
1399 PyObject *value = PyDict_GetItemWithError(attrib, key); in _elementtree_Element_get_impl()
3098 value = PyDict_GetItemWithError(self->names, key); in makeuniversal()
3225 value = PyDict_GetItemWithError(self->entity, key); in expat_default_handler()
/third_party/python/Python/
Dimport.c331 m = PyDict_GetItemWithError(modules, name); /* borrowed */ in import_get_module()
510 PyModuleDef* def = (PyModuleDef *)PyDict_GetItemWithError(extensions, key); in import_find_extension()
595 m = PyDict_GetItemWithError(modules, name); in import_add_module()
951 importer = PyDict_GetItemWithError(path_importer_cache, p); in get_path_importer()
Dsymtable.c387 v = PyDict_GetItemWithError(st->st_blocks, k); in PySymtable_Lookup()
404 PyObject *v = PyDict_GetItemWithError(ste->ste_symbols, name); in _PyST_GetSymbol()
648 v_scope = PyDict_GetItemWithError(scopes, name); in update_symbols()
674 v = PyDict_GetItemWithError(symbols, name); in update_symbols()
1046 if ((o = PyDict_GetItemWithError(dict, mangled))) { in symtable_add_def_helper()
1096 if ((o = PyDict_GetItemWithError(st->st_global, mangled))) { in symtable_add_def_helper()
Dgetargs.c2119 current_arg = PyDict_GetItemWithError(kwargs, keyword); in vgetargskeywordsfast_impl()
2191 current_arg = PyDict_GetItemWithError(kwargs, keyword); in vgetargskeywordsfast_impl()
2377 current_arg = PyDict_GetItemWithError(kwargs, keyword); in _PyArg_UnpackKeywords()
2416 current_arg = PyDict_GetItemWithError(kwargs, keyword); in _PyArg_UnpackKeywords()
Dceval.c2904 v = PyDict_GetItemWithError(locals, name); in _PyEval_EvalFrameDefault()
2921 v = PyDict_GetItemWithError(f->f_globals, name); in _PyEval_EvalFrameDefault()
2930 v = PyDict_GetItemWithError(f->f_builtins, name); in _PyEval_EvalFrameDefault()
3086 value = PyDict_GetItemWithError(locals, name); in _PyEval_EvalFrameDefault()
4955 PyObject *def = PyDict_GetItemWithError(con->fc_kwdefaults, varname); in _PyEval_MakeFrameVector()
6352 PyObject *w = PyDict_GetItemWithError(locals, name); in unicode_concatenate()
/third_party/python/Modules/_ctypes/
Dcallproc.c155 errobj = PyDict_GetItemWithError(dict, error_object_name); in _ctypes_get_errobj()
1889 result = PyDict_GetItemWithError(_ctypes_ptrtype_cache, cls); in POINTER()
1952 typ = PyDict_GetItemWithError(_ctypes_ptrtype_cache, (PyObject *)Py_TYPE(arg)); in pointer()
/third_party/python/Misc/NEWS.d/
D3.5.0b3.rst179 Set KeyError if PyDict_GetItemWithError returns NULL.
/third_party/python/PC/
Dpython3dll.c173 EXPORT_FUNC(PyDict_GetItemWithError)
/third_party/python/Doc/data/
Dstable_abi.dat107 function,PyDict_GetItemWithError,3.2,

12