Fix exit instructions for interactive interpreter, now that ctrl-D works.

llvm-svn: 124811
This commit is contained in:
Caroline Tice 2011-02-03 20:08:40 +00:00
parent 9fd5850fbc
commit eb5cfe4f2b
1 changed files with 1 additions and 2 deletions

View File

@ -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;