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:
parent
edae3fd660
commit
5aee458796
25 changed files with 93 additions and 116 deletions
|
@ -60,7 +60,7 @@ sympy_str (PyObject *self)
|
|||
|
||||
SYMPY_REQUIRE_VALID (self, symbol);
|
||||
|
||||
result = PyString_FromString (symbol->print_name ());
|
||||
result = PyUnicode_FromString (symbol->print_name ());
|
||||
|
||||
return result;
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ sympy_get_name (PyObject *self, void *closure)
|
|||
|
||||
SYMPY_REQUIRE_VALID (self, symbol);
|
||||
|
||||
return PyString_FromString (symbol->natural_name ());
|
||||
return PyUnicode_FromString (symbol->natural_name ());
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
@ -111,7 +111,7 @@ sympy_get_linkage_name (PyObject *self, void *closure)
|
|||
|
||||
SYMPY_REQUIRE_VALID (self, symbol);
|
||||
|
||||
return PyString_FromString (symbol->linkage_name ());
|
||||
return PyUnicode_FromString (symbol->linkage_name ());
|
||||
}
|
||||
|
||||
static PyObject *
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue