2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
authorPhil Muldoon <pmuldoon@redhat.com>
Wed, 2 Oct 2013 08:44:03 +0000 (08:44 +0000)
committerPhil Muldoon <pmuldoon@redhat.com>
Wed, 2 Oct 2013 08:44:03 +0000 (08:44 +0000)
PR python/15579

* python/python.c: Document gdb.execute command in Python help.

gdb/ChangeLog
gdb/python/python.c

index 7f86c8993e7f71036e64866aaef7703ef9111684..c3996555fa6b1035d891d93ca0d9485a59fa8e72 100644 (file)
@@ -1,3 +1,9 @@
+2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
+
+       PR python/15579
+
+       * python/python.c: Document gdb.execute command in Python help.
+
 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
 
        * python/py-frame.c (frame_info_to_frame_object): Use
index 00092c739da7ada431ff7e3f280e327e00ff5f45..542c2d132307847301995b3bc05db01433691d3b 100644 (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" },