diff options
author | Tom Tromey <tom@tromey.com> | 2018-09-08 08:59:00 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-09-10 07:44:22 -0600 |
commit | 22eb9e92ea9b5fd1ed83cfc093d7da6d18643149 (patch) | |
tree | 17e0d06437acb55ae1747a04b5f7ffc75d7dd4ee | |
parent | 23c4651c060c123493de004ef61d8ed052d46113 (diff) | |
download | fsf-binutils-gdb-22eb9e92ea9b5fd1ed83cfc093d7da6d18643149.zip fsf-binutils-gdb-22eb9e92ea9b5fd1ed83cfc093d7da6d18643149.tar.gz fsf-binutils-gdb-22eb9e92ea9b5fd1ed83cfc093d7da6d18643149.tar.bz2 |
Update Python Block.end documentation
PR python/16033 points out that Block.end doesn't describe whether it
is inclusive or exclusive. This patch fixes the documentation.
gdb/doc/ChangeLog
2018-09-10 Tom Tromey <tom@tromey.com>
PR python/16033:
* python.texi (Blocks In Python): Document that Block.end is
exclusive.
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/python.texi | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 58e01e4..cf427ff 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2018-09-10 Tom Tromey <tom@tromey.com> + + PR python/16033: + * python.texi (Blocks In Python): Document that Block.end is + exclusive. + 2018-08-29 Keith Seitz <keiths@redhat.com> * gdb.texinfo (Compiling and injecting code in GDB): Document diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 584b909..86a9111 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -4455,7 +4455,8 @@ The start address of the block. This attribute is not writable. @end defvar @defvar Block.end -The end address of the block. This attribute is not writable. +One past the last address that appears in the block. This attribute +is not writable. @end defvar @defvar Block.function |