mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-18 08:38:10 +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:
@ -26,7 +26,7 @@
|
||||
PyObject *
|
||||
recpy_full_method (PyObject *self, void *closure)
|
||||
{
|
||||
return PyString_FromString ("full");
|
||||
return PyUnicode_FromString ("full");
|
||||
}
|
||||
|
||||
/* Implementation of
|
||||
@ -35,5 +35,5 @@ recpy_full_method (PyObject *self, void *closure)
|
||||
PyObject *
|
||||
recpy_full_format (PyObject *self, void *closure)
|
||||
{
|
||||
return PyString_FromString ("full");
|
||||
return PyUnicode_FromString ("full");
|
||||
}
|
||||
|
Reference in New Issue
Block a user