reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
 3222     statement.assign("sys.path.insert(0,\"");
 3223     statement.append(path);
 3224     statement.append("\")");
 3226     statement.assign("sys.path.append(\"");
 3227     statement.append(path);
 3228     statement.append("\")");
 3230   PyRun_SimpleString(statement.c_str());