Small fixes to the Python API doc
authorSimon Marchi <simon.marchi@ericsson.com>
Mon, 20 Oct 2014 17:29:36 +0000 (13:29 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Mon, 20 Oct 2014 17:29:36 +0000 (13:29 -0400)
First:
"Breakpoint.delete" is missing parenthesis.

Second:
Someone on IRC asked, how come there is no disable() method in the
Breakpoint object.  It turns out you have to do "bp.enabled = False".
Since every normal person would probably search for "disable" in that page
if their intent is to disable a python breakpoint, I thought it would be
useful if the description contained "disable" so it would be easy to find.
The result might seem a bit silly and redundant, so I am open to
suggestions.

gdb/doc/ChangeLog:

* python.texi (Breakpoints In Python): Add parenthesis after
Breakpoint.delete.  Clarify Breakpoint.enabled description so
that it contains "disable".

gdb/doc/ChangeLog
gdb/doc/python.texi

index 474c1af479410cd329bcfa31c29299383118019c..f1b2329d388c6a0102eb60d8792a0b4035dea796 100644 (file)
@@ -1,3 +1,9 @@
+2014-10-20  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * python.texi (Breakpoints In Python): Add parenthesis after
+       Breakpoint.delete.  Clarify Breakpoint.enabled description so
+       that it contains "disable".
+
 2014-10-17  Doug Evans  <dje@google.com>
 
        * python.texi (Events In Python): Document clear_objfiles event.
index 43663d8b444757e4ac32ad8a335edc445af63b29..f1fd841bf9c2d19b42cccad351751d3cf44cd2de 100644 (file)
@@ -4265,7 +4265,7 @@ watchpoint scope, the watchpoint remains valid even if execution of the
 inferior leaves the scope of that watchpoint.
 @end defun
 
-@defun Breakpoint.delete
+@defun Breakpoint.delete ()
 Permanently deletes the @value{GDBN} breakpoint.  This also
 invalidates the Python @code{Breakpoint} object.  Any further access
 to this object's attributes or methods will raise an error.
@@ -4273,7 +4273,8 @@ to this object's attributes or methods will raise an error.
 
 @defvar Breakpoint.enabled
 This attribute is @code{True} if the breakpoint is enabled, and
-@code{False} otherwise.  This attribute is writable.
+@code{False} otherwise.  This attribute is writable.  You can use it to enable
+or disable the breakpoint.
 @end defvar
 
 @defvar Breakpoint.silent
This page took 0.040156 seconds and 4 git commands to generate.