aboutsummaryrefslogtreecommitdiff
path: root/gdb/NEWS
diff options
context:
space:
mode:
authorChristian Biesinger via gdb-patches <gdb-patches@sourceware.org>2019-05-23 16:37:29 -0500
committerTom Tromey <tromey@adacore.com>2019-06-04 09:46:06 -0600
commite1f2e1a2dadbaeffe0a8a6da7aab7effc6b046d2 (patch)
treec9b8498d0f320163e8edef62c5e2c5619028b27d /gdb/NEWS
parenta9d96ab97edabea31bed089bfd4caca80838e31c (diff)
downloadgdb-e1f2e1a2dadbaeffe0a8a6da7aab7effc6b046d2.zip
gdb-e1f2e1a2dadbaeffe0a8a6da7aab7effc6b046d2.tar.gz
gdb-e1f2e1a2dadbaeffe0a8a6da7aab7effc6b046d2.tar.bz2
Add an objfile getter to gdb.Type
This allows users of the Python API to find the objfile where a type was defined. gdb/ChangeLog: gdb/ChangeLog 2019-06-04 Christian Biesinger <cbiesinger@google.com> Add objfile property to gdb.Type. * gdb/NEWS: Mention Python API addition. * gdb/python/py-type.c (typy_get_objfile): New method. gdb/doc/ChangeLog 2019-06-04 Christian Biesinger <cbiesinger@google.com> * gdb/doc/python.texi: Document new gdb.Type.objfile property. gdb/testsuite/ChangeLog 2019-06-04 Christian Biesinger <cbiesinger@google.com> * gdb/testsuite/gdb.python/py-type.exp: Test for new gdb.Type.objfile property.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r--gdb/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/NEWS b/gdb/NEWS
index 41f4f7a..ded1fce 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -27,6 +27,9 @@
'array_indexes', 'symbols', 'unions', 'deref_refs', 'actual_objects',
'static_members', 'max_elements', 'repeat_threshold', and 'format'.
+ ** gdb.Type has a new property 'objfile' which returns the objfile the
+ type was defined in.
+
* New built-in convenience variables $_shell_exitcode and $_shell_exitsignal
provide the exitcode or exit status of the shell commands launched by
GDB commands such as "shell", "pipe" and "make".