Home
last modified time | relevance | path

Searched refs:module_dict (Results 1 - 8 of 8) sorted by relevance

/third_party/python/Modules/
H A 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/node/deps/v8/third_party/jinja2/
H A Denvironment.py1045 def from_module_dict(cls, environment, module_dict, globals):
1051 return cls._from_namespace(environment, module_dict, globals)
/third_party/node/tools/inspector_protocol/jinja2/
H A Denvironment.py962 def from_module_dict(cls, environment, module_dict, globals):
968 return cls._from_namespace(environment, module_dict, globals)
/third_party/skia/third_party/externals/jinja2/
H A Denvironment.py1045 def from_module_dict(cls, environment, module_dict, globals):
1051 return cls._from_namespace(environment, module_dict, globals)
/third_party/python/Modules/_sqlite/
H A Dconnection.c1871 PyObject* module_dict; in pysqlite_connection_iterdump_impl() local
1883 module_dict = PyModule_GetDict(module); in pysqlite_connection_iterdump_impl()
1884 if (!module_dict) { in pysqlite_connection_iterdump_impl()
1892 pyfn_iterdump = PyDict_GetItemWithError(module_dict, meth); in pysqlite_connection_iterdump_impl()
/third_party/jinja2/
H A Denvironment.py1231 module_dict: t.MutableMapping[str, t.Any],
1239 return cls._from_namespace(environment, module_dict, globals)
/third_party/python/Python/
H A Dimport.c760 PyObject *module_dict, PyObject *code_object) in exec_code_in_module()
764 v = PyEval_EvalCode(code_object, module_dict, module_dict); in exec_code_in_module()
759 exec_code_in_module(PyThreadState *tstate, PyObject *name, PyObject *module_dict, PyObject *code_object) exec_code_in_module() argument
/third_party/python/Lib/
H A Dinspect.py2199 module_dict = {}
2204 module_dict = module.__dict__
2215 value = eval(s, module_dict)

Completed in 18 milliseconds