2013-10-02 Phil Muldoon <pmuldoon@redhat.com>

PR python/15579

	* python/python.c: Document gdb.execute command in Python help.
This commit is contained in:
Phil Muldoon 2013-10-02 08:44:03 +00:00
parent 1efd76617b
commit 751e7549b0
2 changed files with 10 additions and 1 deletions

View file

@ -1825,7 +1825,10 @@ static PyMethodDef GdbMethods[] =
{ "history", gdbpy_history, METH_VARARGS,
"Get a value from history" },
{ "execute", (PyCFunction) execute_gdb_command, METH_VARARGS | METH_KEYWORDS,
"Execute a gdb command" },
"execute (command [, from_tty] [, to_string]) -> [String]\n\
Evaluate command, a string, as a gdb CLI command. Optionally returns\n\
a Python String containing the output of the command if to_string is\n\
set to True." },
{ "parameter", gdbpy_parameter, METH_VARARGS,
"Return a gdb parameter's value" },