mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-23 07:47:49 +00: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:
@@ -753,10 +753,10 @@ infpy_repr (PyObject *obj)
|
||||
inferior *inf = self->inferior;
|
||||
|
||||
if (inf == nullptr)
|
||||
return PyString_FromString ("<gdb.Inferior (invalid)>");
|
||||
return PyUnicode_FromString ("<gdb.Inferior (invalid)>");
|
||||
|
||||
return PyString_FromFormat ("<gdb.Inferior num=%d, pid=%d>",
|
||||
inf->num, inf->pid);
|
||||
return PyUnicode_FromFormat ("<gdb.Inferior num=%d, pid=%d>",
|
||||
inf->num, inf->pid);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user