]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
gdb/python: introduce gdb.warning() function
authorAndrew Burgess <aburgess@redhat.com>
Thu, 12 Jun 2025 13:29:16 +0000 (14:29 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Thu, 19 Jun 2025 09:31:14 +0000 (10:31 +0100)
commitd8e6b67b18d1864a7ca1bd0bb4fabe949fad2135
tree6d81b06bf5ef8efdb95792611fedefd9d6ac5c11
parent86a5d1eb9b03ff391a551bf5594c0aa9898f9989
gdb/python: introduce gdb.warning() function

This commit adds a new gdb.warning() function.  This function takes a
string and then calls GDB's internal warning() function.  This will
display the string as a warning.

Using gdb.warning() means that the message will get the new emoji
prefix if the user has that feature turned on.  Also, the message will
be sent to gdb.STDERR without the user having to remember to print to
the correct stream.

Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Approved-By: Tom Tromey <tom@tromey.com>
gdb/NEWS
gdb/doc/gdb.texinfo
gdb/doc/python.texi
gdb/python/python.c
gdb/testsuite/gdb.python/py-warning.exp [new file with mode: 0644]