summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/ScriptInterpreterPython.cpp
diff options
context:
space:
mode:
authorCaroline Tice <ctice@apple.com>2011-02-03 20:08:40 +0000
committerCaroline Tice <ctice@apple.com>2011-02-03 20:08:40 +0000
commiteb5cfe4f2b721392eae83914a28bbafbda25e49b (patch)
tree74e1cc0edc73e58fd4f85ba467b1e32f4625f8c8 /lldb/source/Interpreter/ScriptInterpreterPython.cpp
parent9fd5850fbcfcb4c660c875c30a544c847fa028e4 (diff)
downloadbcm5719-llvm-eb5cfe4f2b721392eae83914a28bbafbda25e49b.tar.gz
bcm5719-llvm-eb5cfe4f2b721392eae83914a28bbafbda25e49b.zip
Fix exit instructions for interactive interpreter, now that ctrl-D works.
llvm-svn: 124811
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r--lldb/source/Interpreter/ScriptInterpreterPython.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp
index 368399b08e5..0ebc095f57b 100644
--- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp
+++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp
@@ -575,8 +575,7 @@ ScriptInterpreterPython::InputReaderCallback
{
if (out_fh)
{
- ::fprintf (out_fh, "Python Interactive Interpreter. To exit Python, type 'quit()' or 'exit()'.\n");
- ::fprintf (out_fh, "Do NOT use Ctrl-D (EOF) to exit, as that will cause the lldb debugger to hang.\n");
+ ::fprintf (out_fh, "Python Interactive Interpreter. To exit, type 'quit()', 'exit()' or Ctrl-D.\n");
}
// Save terminal settings if we can
int input_fd;
OpenPOWER on IntegriCloud