Searched refs:PyDict_GetItemWithError (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Include/ |
D | odictobject.h | 32 PyDict_GetItemWithError((PyObject *)od, key)
|
D | dictobject.h | 75 PyAPI_FUNC(PyObject *) PyDict_GetItemWithError(PyObject *mp, PyObject *key);
|
/external/python/cpython3/Doc/c-api/ |
D | dict.rst | 100 To get error reporting use :c:func:`PyDict_GetItemWithError()` instead. 103 .. c:function:: PyObject* PyDict_GetItemWithError(PyObject *p, PyObject *key) 119 To get error reporting use :c:func:`PyDict_GetItemWithError()` instead.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0b3.rst | 179 Set KeyError if PyDict_GetItemWithError returns NULL.
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 1851 if (PyDict_GetItemWithError(self->fast_memo, key)) { in fast_save_enter() 3235 item = PyDict_GetItemWithError(st->name_mapping_3to2, key); in fix_imports() 3272 item = PyDict_GetItemWithError(st->import_mapping_3to2, *module_name); in fix_imports() 3377 code_obj = PyDict_GetItemWithError(st->extension_registry, in save_global() 4042 reduce_func = PyDict_GetItemWithError(st->dispatch_table, in save() 5837 obj = PyDict_GetItemWithError(st->extension_cache, py_code); in load_extension() 5850 pair = PyDict_GetItemWithError(st->inverted_registry, py_code); in load_extension() 6597 item = PyDict_GetItemWithError(st->name_mapping_2to3, key); in _pickle_Unpickler_find_class_impl() 6623 item = PyDict_GetItemWithError(st->import_mapping_2to3, module_name); in _pickle_Unpickler_find_class_impl()
|
/external/python/cpython3/PC/ |
D | python3.def | 102 PyDict_GetItemWithError=python37.PyDict_GetItemWithError
|
/external/python/cpython3/Python/ |
D | import.c | 362 m = PyDict_GetItemWithError(modules, name); /* borrowed */ in PyImport_GetModule() 785 m = PyDict_GetItemWithError(modules, name); in _PyImport_AddModuleObject()
|
/external/python/cpython3/Objects/ |
D | dictobject.c | 1364 PyDict_GetItemWithError(PyObject *op, PyObject *key) in PyDict_GetItemWithError() function 1397 return PyDict_GetItemWithError(dp, kv); in _PyDict_GetItemIdWithError() 4131 found = PyDict_GetItemWithError((PyObject *)dv->dv_dict, key); in dictitems_contains()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 487 PyDict_GetItemWithError:PyObject*::0:0 488 PyDict_GetItemWithError:PyObject*:p:0: 489 PyDict_GetItemWithError:PyObject*:key:0:
|
/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 428 b = PyDict_GetItemWithError(val, cm->ex); in dict_as_flags()
|