Home
last modified time | relevance | path

Searched refs:_PyDict_GetItemStringWithError (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Include/cpython/
Ddictobject.h34 PyAPI_FUNC(PyObject *) _PyDict_GetItemStringWithError(PyObject *, const char *);
/third_party/python/Python/
Dpylifecycle.c773 PyObject *import_func = _PyDict_GetItemStringWithError(interp->builtins, in pycore_init_builtins()
1325 PyObject *value = _PyDict_GetItemStringWithError(interp->sysdict, in finalize_modules_delete_special()
2049 if (_PyDict_GetItemStringWithError(d, "__builtins__") == NULL) { in add_main_module()
2069 loader = _PyDict_GetItemStringWithError(d, "__loader__"); in add_main_module()
Dpythonrun.c410 if (_PyDict_GetItemStringWithError(d, "__file__") == NULL) { in _PyRun_SimpleFileObject()
1282 if (globals != NULL && _PyDict_GetItemStringWithError(globals, "__builtins__") == NULL) { in run_eval_code_obj()
Dgetargs.c1719 current_arg = _PyDict_GetItemStringWithError(kwargs, kwlist[i]); in vgetargskeywords()
1804 current_arg = _PyDict_GetItemStringWithError(kwargs, kwlist[i]); in vgetargskeywords()
Dcodecs.c648 handler = _PyDict_GetItemStringWithError(interp->codec_error_registry, name); in PyCodec_LookupError()
Dsysmodule.c97 return _PyDict_GetItemStringWithError(sysdict, name); in _PySys_GetObject()
Dinitconfig.c1072 PyObject *item = _PyDict_GetItemStringWithError(dict, name); in config_dict_get()
/third_party/python/Objects/
Dstructseq.c217 ob = _PyDict_GetItemStringWithError(dict, in structseq_new_impl()
Ddictobject.c1545 _PyDict_GetItemStringWithError(PyObject *v, const char *key) in _PyDict_GetItemStringWithError() function