diff options
author | Christian Biesinger via gdb-patches <gdb-patches@sourceware.org> | 2019-05-23 16:37:29 -0500 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-06-04 09:46:06 -0600 |
commit | e1f2e1a2dadbaeffe0a8a6da7aab7effc6b046d2 (patch) | |
tree | c9b8498d0f320163e8edef62c5e2c5619028b27d /gdb/NEWS | |
parent | a9d96ab97edabea31bed089bfd4caca80838e31c (diff) | |
download | gdb-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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". |