Reverting r315966 - it caused a build failure on an ubuntu x android bot.

llvm-svn: 315967
This commit is contained in:
Jason Molenda
2017-10-17 03:13:39 +00:00
parent 695a1f6e6c
commit ef96986a1f
10 changed files with 21 additions and 302 deletions

View File

@@ -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;