diff options
author | Caroline Tice <ctice@apple.com> | 2011-02-03 20:08:40 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2011-02-03 20:08:40 +0000 |
commit | eb5cfe4f2b721392eae83914a28bbafbda25e49b (patch) | |
tree | 74e1cc0edc73e58fd4f85ba467b1e32f4625f8c8 /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | 9fd5850fbcfcb4c660c875c30a544c847fa028e4 (diff) | |
download | bcm5719-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.cpp | 3 |
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; |