Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp93 PythonObject sys_module = m_main_module.ResolveName("sys"); in TEST_F() local
94 EXPECT_EQ(m_sys_module.get(), sys_module.get()); in TEST_F()
95 EXPECT_TRUE(sys_module.IsAllocated()); in TEST_F()
96 EXPECT_TRUE(PythonModule::Check(sys_module.get())); in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp743 PythonModule sys_module = unwrapIgnoringErrors(PythonModule::Import("sys")); in GetSysModuleDictionary() local
744 m_sys_module_dict = sys_module.GetDictionary(); in GetSysModuleDictionary()