diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-03-21 10:07:41 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2022-03-23 07:42:57 -0400 |
commit | 5aee45879681a7a76754a25b3f4f96b4529f7ae3 (patch) | |
tree | 04698477d38cf45871c7542eea6ce6a8d2b46a18 /gdb/python/py-micmd.c | |
parent | edae3fd6600f10f9e16dc017b705959f541ed19a (diff) | |
download | gdb-5aee45879681a7a76754a25b3f4f96b4529f7ae3.zip gdb-5aee45879681a7a76754a25b3f4f96b4529f7ae3.tar.gz gdb-5aee45879681a7a76754a25b3f4f96b4529f7ae3.tar.bz2 |
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
Diffstat (limited to 'gdb/python/py-micmd.c')
-rw-r--r-- | gdb/python/py-micmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/python/py-micmd.c b/gdb/python/py-micmd.c index a194798..a0c3071 100644 --- a/gdb/python/py-micmd.c +++ b/gdb/python/py-micmd.c @@ -185,7 +185,7 @@ static gdb::unique_xmalloc_ptr<char> py_object_to_mi_key (PyObject *key_obj) { /* The key must be a string. */ - if (!PyString_Check (key_obj)) + if (!PyUnicode_Check (key_obj)) { gdbpy_ref<> key_repr (PyObject_Repr (key_obj)); gdb::unique_xmalloc_ptr<char> key_repr_string; @@ -261,7 +261,7 @@ serialize_mi_result_1 (PyObject *result, const char *field_name) serialize_mi_result_1 (value, key_string.get ()); } } - else if (PySequence_Check (result) && !PyString_Check (result)) + else if (PySequence_Check (result) && !PyUnicode_Check (result)) { ui_out_emit_list list_emitter (uiout, field_name); Py_ssize_t len = PySequence_Size (result); @@ -607,7 +607,7 @@ gdbpy_initialize_micommands () < 0) return -1; - invoke_cst = PyString_FromString ("invoke"); + invoke_cst = PyUnicode_FromString ("invoke"); if (invoke_cst == nullptr) return -1; @@ -636,7 +636,7 @@ micmdpy_get_name (PyObject *self, void *closure) gdb_assert (micmd_obj->mi_command_name != nullptr); std::string name_str = string_printf ("-%s", micmd_obj->mi_command_name); - return PyString_FromString (name_str.c_str ()); + return PyUnicode_FromString (name_str.c_str ()); } /* Get the gdb.MICommand.installed property. Returns true if this MI |