Searched refs:_PyDict_GetItemStringWithError (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Include/cpython/ |
D | dictobject.h | 34 PyAPI_FUNC(PyObject *) _PyDict_GetItemStringWithError(PyObject *, const char *);
|
/third_party/python/Python/ |
D | pylifecycle.c | 773 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()
|
D | pythonrun.c | 410 if (_PyDict_GetItemStringWithError(d, "__file__") == NULL) { in _PyRun_SimpleFileObject() 1282 if (globals != NULL && _PyDict_GetItemStringWithError(globals, "__builtins__") == NULL) { in run_eval_code_obj()
|
D | getargs.c | 1719 current_arg = _PyDict_GetItemStringWithError(kwargs, kwlist[i]); in vgetargskeywords() 1804 current_arg = _PyDict_GetItemStringWithError(kwargs, kwlist[i]); in vgetargskeywords()
|
D | codecs.c | 648 handler = _PyDict_GetItemStringWithError(interp->codec_error_registry, name); in PyCodec_LookupError()
|
D | sysmodule.c | 97 return _PyDict_GetItemStringWithError(sysdict, name); in _PySys_GetObject()
|
D | initconfig.c | 1072 PyObject *item = _PyDict_GetItemStringWithError(dict, name); in config_dict_get()
|
/third_party/python/Objects/ |
D | structseq.c | 217 ob = _PyDict_GetItemStringWithError(dict, in structseq_new_impl()
|
D | dictobject.c | 1545 _PyDict_GetItemStringWithError(PyObject *v, const char *key) in _PyDict_GetItemStringWithError() function
|