mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
gdb/python: remove Python 2/3 compatibility macros
New in this version: - Rebase on master, fix a few more issues that appeared. python-internal.h contains a number of macros that helped make the code work with both Python 2 and 3. Remove them and adjust the code to use the Python 3 functions. Change-Id: I99a3d80067fb2d65de4f69f6473ba6ffd16efb2d
This commit is contained in:
@ -204,12 +204,12 @@ connpy_repr (PyObject *obj)
|
||||
process_stratum_target *target = self->target;
|
||||
|
||||
if (target == nullptr)
|
||||
return PyString_FromFormat ("<%s (invalid)>", Py_TYPE (obj)->tp_name);
|
||||
return PyUnicode_FromFormat ("<%s (invalid)>", Py_TYPE (obj)->tp_name);
|
||||
|
||||
return PyString_FromFormat ("<%s num=%d, what=\"%s\">",
|
||||
Py_TYPE (obj)->tp_name,
|
||||
target->connection_number,
|
||||
make_target_connection_string (target).c_str ());
|
||||
return PyUnicode_FromFormat ("<%s num=%d, what=\"%s\">",
|
||||
Py_TYPE (obj)->tp_name,
|
||||
target->connection_number,
|
||||
make_target_connection_string (target).c_str ());
|
||||
}
|
||||
|
||||
/* Implementation of gdb.TargetConnection.is_valid() -> Boolean. Returns
|
||||
|
Reference in New Issue
Block a user