Fix potential file i/o problem with python handles.

llvm-svn: 250838
This commit is contained in:
Zachary Turner
2015-10-20 17:38:49 +00:00
parent cffe8caed3
commit 32064024b9
4 changed files with 50 additions and 37 deletions

View File

@@ -570,9 +570,9 @@ protected:
bool
GetEmbeddedInterpreterModuleObjects ();
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;