diff --git a/Objects/object.c b/Objects/object.c index a04e00bf79b..9c4cd6a05a3 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -267,7 +267,7 @@ PyObject_Repr(v) return NULL; if (PyUnicode_Check(res)) { PyObject* str; - str = PyUnicode_AsEncodedString(res, NULL, NULL); + str = PyUnicode_AsUnicodeEscapeString(res); Py_DECREF(res); if (str) res = str;