mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-12-19 01:19:41 +08:00
[gdb/python] Eliminate GDB_PY_HANDLE_EXCEPTION
Result of:
...
$ search="GDB_PY_HANDLE_EXCEPTION ("
$ replace="return gdbpy_handle_gdb_exception (nullptr, "
$ sed -i \
"s/$search/$replace/" \
gdb/python/*.c
...
Also remove the now unused GDB_PY_HANDLE_EXCEPTION.
No functional changes.
Tested on x86_64-linux.
Approved-By: Tom Tromey <tom@tromey.com>
This commit is contained in:
@@ -148,7 +148,7 @@ stpy_convert_to_value (PyObject *self, PyObject *args)
|
||||
}
|
||||
catch (const gdb_exception &except)
|
||||
{
|
||||
GDB_PY_HANDLE_EXCEPTION (except);
|
||||
return gdbpy_handle_gdb_exception (nullptr, except);
|
||||
}
|
||||
|
||||
return result;
|
||||
@@ -311,7 +311,7 @@ stpy_str (PyObject *self)
|
||||
}
|
||||
catch (const gdb_exception &exc)
|
||||
{
|
||||
GDB_PY_HANDLE_EXCEPTION (exc);
|
||||
return gdbpy_handle_gdb_exception (nullptr, exc);
|
||||
}
|
||||
|
||||
return host_string_to_python_string (stream.c_str ()).release ();
|
||||
|
||||
Reference in New Issue
Block a user