diff options
author | Jason Molenda <jmolenda@apple.com> | 2017-10-17 03:13:39 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2017-10-17 03:13:39 +0000 |
commit | ef96986a1f8f47a67937c56564524e20e3903946 (patch) | |
tree | 73f1d33684267d5e455573a294b74eacb4c02a59 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | |
parent | 695a1f6e6cf7f164b71c5ee9f1756374547114c9 (diff) | |
download | bcm5719-llvm-ef96986a1f8f47a67937c56564524e20e3903946.tar.gz bcm5719-llvm-ef96986a1f8f47a67937c56564524e20e3903946.zip |
Reverting r315966 - it caused a build failure on an ubuntu x android bot.
llvm-svn: 315967
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h index ed200e4294e..a71fcea7519 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h @@ -541,12 +541,12 @@ protected: bool GetEmbeddedInterpreterModuleObjects(); - bool SetStdHandle(File &file, const char *py_name, PythonObject &save_file, + bool SetStdHandle(File &file, const char *py_name, PythonFile &save_file, const char *mode); - PythonObject m_saved_stdin; - PythonObject m_saved_stdout; - PythonObject m_saved_stderr; + PythonFile m_saved_stdin; + PythonFile m_saved_stdout; + PythonFile m_saved_stderr; PythonObject m_main_module; PythonObject m_lldb_module; PythonDictionary m_session_dict; |