From 2a1e060619b10062ce7ef2b826b2da940096f7a5 Mon Sep 17 00:00:00 2001 From: Fredrik Lundh Date: Sat, 8 Jul 2000 17:43:32 +0000 Subject: - changed __repr__ to use "unicode escape" encoding for unicode strings, instead of the default encoding. (see "minidom" thread for discussion, and also patch #100706) --- Objects/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/object.c b/Objects/object.c index a04e00b..9c4cd6a 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; -- cgit v0.12