summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/ScriptInterpreterPython.cpp
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-03-11 00:28:50 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-03-11 00:28:50 +0000
commit24e99aa8337b0fd71f1220d664c529c3651e09e2 (patch)
tree1852e4e39e015edeb220de1e837d9d43c491a196 /lldb/source/Interpreter/ScriptInterpreterPython.cpp
parentc288e8ca0cedc08c58cf26d67d38ff167515387f (diff)
downloadbcm5719-llvm-24e99aa8337b0fd71f1220d664c529c3651e09e2.tar.gz
bcm5719-llvm-24e99aa8337b0fd71f1220d664c529c3651e09e2.zip
Minor typo fix and TAB removals.
llvm-svn: 127439
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r--lldb/source/Interpreter/ScriptInterpreterPython.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp
index 07eeafac0c2..c8dfec513cc 100644
--- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp
+++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp
@@ -1381,11 +1381,11 @@ ScriptInterpreterPython::RunEmbeddedPythonInterpreter (lldb::thread_arg_t baton)
PyRun_SimpleString (run_string.GetData());
run_string.Clear ();
- // The following call drops into the embedded interpreter loop and stays there until the
- // user chooses to exit from the Python interpreter.
+ // The following call drops into the embedded interpreter loop and stays there until the
+ // user chooses to exit from the Python interpreter.
// When in the embedded interpreter, the user can call arbitrary system and Python stuff, which may require
- // the ability to run multi-threaded stuff, so we need to surround the call the the embedded interpreter with
+ // the ability to run multi-threaded stuff, so we need to surround the call to the embedded interpreter with
// calls to Py_BEGIN_ALLOW_THREADS and Py_END_ALLOW_THREADS.
// We ALSO need to surround the call to the embedded interpreter with calls to PyGILState_Ensure and
@@ -1436,7 +1436,7 @@ ScriptInterpreterPython::RunEmbeddedPythonInterpreter (lldb::thread_arg_t baton)
log->Printf ("%p ScriptInterpreterPython::RunEmbeddedPythonInterpreter () thread exiting...", baton);
- // Clean up the input reader and make the debugger pop it off the stack.
+ // Clean up the input reader and make the debugger pop it off the stack.
Debugger &debugger = script_interpreter->GetCommandInterpreter().GetDebugger();
const InputReaderSP reader_sp = script_interpreter->m_embedded_thread_input_reader_sp;
script_interpreter->m_embedded_thread_input_reader_sp.reset();
OpenPOWER on IntegriCloud