diff options
Diffstat (limited to 'gdb/python/py-xmethods.c')
-rw-r--r-- | gdb/python/py-xmethods.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/python/py-xmethods.c b/gdb/python/py-xmethods.c index 9d58249..1467e52 100644 --- a/gdb/python/py-xmethods.c +++ b/gdb/python/py-xmethods.c @@ -103,7 +103,7 @@ invoke_match_method (PyObject *matcher, PyObject *py_obj_type, if (match_method == NULL) return NULL; - gdbpy_ref<> py_xmethod_name (PyString_FromString (xmethod_name)); + gdbpy_ref<> py_xmethod_name (PyUnicode_FromString (xmethod_name)); if (py_xmethod_name == NULL) return NULL; @@ -601,12 +601,12 @@ python_xmethod_worker::python_xmethod_worker (PyObject *py_worker, int gdbpy_initialize_xmethods (void) { - py_match_method_name = PyString_FromString (match_method_name); + py_match_method_name = PyUnicode_FromString (match_method_name); if (py_match_method_name == NULL) return -1; py_get_arg_types_method_name - = PyString_FromString (get_arg_types_method_name); + = PyUnicode_FromString (get_arg_types_method_name); if (py_get_arg_types_method_name == NULL) return -1; |