diff options
author | Yit Phang Khoo <khooyp@sourceware.org> | 2012-08-23 18:55:25 +0000 |
---|---|---|
committer | Yit Phang Khoo <khooyp@sourceware.org> | 2012-08-23 18:55:25 +0000 |
commit | e3480f4aa1c96384e52740884918ad0ba6228830 (patch) | |
tree | adedeb22cab6e4f6a005b7f90ea1b569500d6aa9 /gdb/python | |
parent | dfbd5e7bbbf503e8e0f3bdcb0a15ed7ee605a5f3 (diff) | |
download | gdb-e3480f4aa1c96384e52740884918ad0ba6228830.zip gdb-e3480f4aa1c96384e52740884918ad0ba6228830.tar.gz gdb-e3480f4aa1c96384e52740884918ad0ba6228830.tar.bz2 |
Document how to return from "python-interactive" to GDB.
* doc/gdb.texinfo (Python Commands): Update documentation.
* python/python.c (_initialize_python): Update documentation.
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/python.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index 1e59d1e..482f53e 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -1277,7 +1277,10 @@ _initialize_python (void) python_interactive_command, #ifdef HAVE_PYTHON _("\ -Start a Python interactive prompt.\n\ +Start an interactive Python prompt.\n\ +\n\ +To return to GDB, type the EOF character (e.g., Ctrl-D on an empty\n\ +prompt).\n\ \n\ Alternatively, a single-line Python command can be given as an\n\ argument, and if the command is an expression, the result will be\n\ |