From eb5cfe4f2b721392eae83914a28bbafbda25e49b Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Thu, 3 Feb 2011 20:08:40 +0000 Subject: Fix exit instructions for interactive interpreter, now that ctrl-D works. llvm-svn: 124811 --- lldb/source/Interpreter/ScriptInterpreterPython.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp') 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; -- cgit v1.2.3