diff options
author | Tom Tromey <tom@tromey.com> | 2018-09-15 00:57:12 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-09-23 23:15:12 -0600 |
commit | 2b4ad2fe4300489fd40dbe07e1675ff1cf0bee58 (patch) | |
tree | 457da478463cdd8a535b0337d9d19d0096c8805d /gdb/python/python-internal.h | |
parent | fd3ba736db19d4c7cd928f3735329339a8c8ef47 (diff) | |
download | binutils-2b4ad2fe4300489fd40dbe07e1675ff1cf0bee58.zip binutils-2b4ad2fe4300489fd40dbe07e1675ff1cf0bee58.tar.gz binutils-2b4ad2fe4300489fd40dbe07e1675ff1cf0bee58.tar.bz2 |
Consolidate gdb.GdbError handling
I noticed two nearly identical copies of the same code for handling
gdb.GdbError. The only differences were in some error messages.
These differences didn't seem very important, so this patch pulls the
code out into a new function.
2018-09-23 Tom Tromey <tom@tromey.com>
* python/py-function.c (fnpy_call): Use gdbpy_handle_exception.
* python/py-cmd.c (cmdpy_function): Use gdbpy_handle_exception.
* python/python-internal.h (gdbpy_handle_exception): Declare.
* python/py-utils.c (gdbpy_handle_exception): New function.
Diffstat (limited to 'gdb/python/python-internal.h')
-rw-r--r-- | gdb/python/python-internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/python/python-internal.h b/gdb/python/python-internal.h index e32502d..1812abb 100644 --- a/gdb/python/python-internal.h +++ b/gdb/python/python-internal.h @@ -654,6 +654,7 @@ extern const struct language_defn *python_language; int gdbpy_print_python_errors_p (void); void gdbpy_print_stack (void); +void gdbpy_handle_exception () ATTRIBUTE_NORETURN; PyObject *python_string_to_unicode (PyObject *obj); gdb::unique_xmalloc_ptr<char> unicode_to_target_string (PyObject *unicode_str); |