mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-08 07:46:54 +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:
gdb/python
py-arch.cpy-breakpoint.cpy-cmd.cpy-connection.cpy-frame.cpy-inferior.cpy-infthread.cpy-lazy-string.cpy-membuf.cpy-micmd.cpy-objfile.cpy-param.cpy-record-btrace.cpy-record-full.cpy-record.cpy-registers.cpy-signalevent.cpy-symbol.cpy-symtab.cpy-type.cpy-unwind.cpy-utils.cpy-xmethods.cpython-internal.hpython.c
@ -93,7 +93,7 @@ stpy_str (PyObject *self)
|
||||
|
||||
STPY_REQUIRE_VALID (self, symtab);
|
||||
|
||||
result = PyString_FromString (symtab_to_filename_for_display (symtab));
|
||||
result = PyUnicode_FromString (symtab_to_filename_for_display (symtab));
|
||||
|
||||
return result;
|
||||
}
|
||||
@ -234,8 +234,8 @@ salpy_str (PyObject *self)
|
||||
filename = symtab_to_filename_for_display (symtab);
|
||||
}
|
||||
|
||||
return PyString_FromFormat ("symbol and line for %s, line %d", filename,
|
||||
sal->line);
|
||||
return PyUnicode_FromFormat ("symbol and line for %s, line %d", filename,
|
||||
sal->line);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user