Home
last modified time | relevance | path

Searched refs:module_dict (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Modules/
Derrnomodule.c50 _add_errcode(PyObject *module_dict, PyObject *error_dict, const char *name_str, int code_int) in _add_errcode() argument
65 if (PyDict_SetItem(module_dict, name, code) < 0) { in _add_errcode()
82 PyObject *module_dict = PyModule_GetDict(module); in errno_exec() local
84 if (!module_dict || !error_dict) { in errno_exec()
87 if (PyDict_SetItemString(module_dict, "errorcode", error_dict) < 0) { in errno_exec()
95 if (_add_errcode(module_dict, error_dict, name, code) < 0) { \ in errno_exec()
/third_party/python/Modules/_sqlite/
Dconnection.c1613 PyObject* module_dict; in pysqlite_connection_iterdump_impl() local
1625 module_dict = PyModule_GetDict(module); in pysqlite_connection_iterdump_impl()
1626 if (!module_dict) { in pysqlite_connection_iterdump_impl()
1630 pyfn_iterdump = _PyDict_GetItemIdWithError(module_dict, &PyId__iterdump); in pysqlite_connection_iterdump_impl()
/third_party/skia/third_party/externals/jinja2/
Denvironment.py1045 def from_module_dict(cls, environment, module_dict, globals): argument
1051 return cls._from_namespace(environment, module_dict, globals)
/third_party/node/tools/inspector_protocol/jinja2/
Denvironment.py962 def from_module_dict(cls, environment, module_dict, globals): argument
968 return cls._from_namespace(environment, module_dict, globals)
/third_party/jinja2/
Denvironment.py1045 def from_module_dict(cls, environment, module_dict, globals): argument
1051 return cls._from_namespace(environment, module_dict, globals)
/third_party/python/Python/
Dimport.c789 PyObject *module_dict, PyObject *code_object) in exec_code_in_module() argument
793 v = PyEval_EvalCode(code_object, module_dict, module_dict); in exec_code_in_module()
/third_party/python/Lib/
Dinspect.py2152 module_dict = {}
2157 module_dict = module.__dict__
2168 value = eval(s, module_dict)