From 6ae82a66acbb8f6b5aa1c0a1530f1709d0bc4813 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Fri, 13 Jun 2014 03:30:47 +0000 Subject: [PATCH] Interpreter: kill some dead code Remove commented out code and an unnecessary associated scope. No functional change. llvm-svn: 210882 --- lldb/source/Interpreter/ScriptInterpreterPython.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index b0a889e..f7e9309e 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -1047,10 +1047,7 @@ ScriptInterpreterPython::ExecuteMultipleLines (const char *in_string, const Exec PyCodeObject *compiled_code = PyNode_Compile (compiled_node, "temp.py"); if (compiled_code) { - { // scope for PythonInputReaderManager - //PythonInputReaderManager py_input(options.GetEnableIO() ? this : NULL); - return_value.Reset(PyEval_EvalCode (compiled_code, globals.get(), locals.get())); - } + return_value.Reset(PyEval_EvalCode (compiled_code, globals.get(), locals.get())); } } } -- 2.7.4