[Lldb-commits] [lldb] r124811 - /lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp

Caroline Tice ctice at apple.com
Thu Feb 3 12:08:40 PST 2011


Author: ctice
Date: Thu Feb  3 14:08:40 2011
New Revision: 124811

URL: http://llvm.org/viewvc/llvm-project?rev=124811&view=rev
Log:
Fix exit instructions for interactive interpreter, now that ctrl-D works.


Modified:
    lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp

Modified: lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp?rev=124811&r1=124810&r2=124811&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp (original)
+++ lldb/trunk/source/Interpreter/ScriptInterpreterPython.cpp Thu Feb  3 14:08:40 2011
@@ -575,8 +575,7 @@
         {
             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;





More information about the lldb-commits mailing list