From 5aee45879681a7a76754a25b3f4f96b4529f7ae3 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 21 Mar 2022 10:07:41 -0400 Subject: 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 --- gdb/python/py-infthread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/python/py-infthread.c') diff --git a/gdb/python/py-infthread.c b/gdb/python/py-infthread.c index c94d5b0..34f6052 100644 --- a/gdb/python/py-infthread.c +++ b/gdb/python/py-infthread.c @@ -73,7 +73,7 @@ thpy_get_name (PyObject *self, void *ignore) if (name == NULL) Py_RETURN_NONE; - return PyString_FromString (name); + return PyUnicode_FromString (name); } /* Return a string containing target specific additional information about @@ -101,7 +101,7 @@ thpy_get_details (PyObject *self, void *ignore) if (extra_info == nullptr) Py_RETURN_NONE; - return PyString_FromString (extra_info); + return PyUnicode_FromString (extra_info); } static int -- cgit v1.1