Home
last modified time | relevance | path

Searched refs:sys_module_dict (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp686 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in LeaveSession() local
687 if (sys_module_dict.IsValid()) { in LeaveSession()
689 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
693 sys_module_dict.SetItemForKey(PythonString("stdout"), m_saved_stdout); in LeaveSession()
697 sys_module_dict.SetItemForKey(PythonString("stderr"), m_saved_stderr); in LeaveSession()
719 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in SetStdHandle() local
727 save_file = sys_module_dict.GetItemForKey(PythonString(py_name)); in SetStdHandle()
729 sys_module_dict.SetItemForKey(PythonString(py_name), new_file.get()); in SetStdHandle()
782 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in EnterSession() local
783 if (sys_module_dict.IsValid()) { in EnterSession()
/external/python/cpython3/Lib/
Dinspect.py2032 sys_module_dict = sys.modules.copy()
2045 value = eval(s, sys_module_dict)