From: Martin v. Löwis Date: Sun, 18 May 2003 12:56:25 +0000 (+0000) Subject: Only encode Unicode objects when printing them raw. X-Git-Tag: v2.3c1~674 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=415da6e0b22924e5b4c080cfdbbaed655d6684c7;p=python Only encode Unicode objects when printing them raw. --- diff --git a/Objects/fileobject.c b/Objects/fileobject.c index 40ce759f58..1cc6def62c 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -2064,7 +2064,8 @@ PyFile_WriteObject(PyObject *v, PyObject *f, int flags) return -1; } #ifdef Py_USING_UNICODE - if (PyUnicode_Check(v) && enc != Py_None) { + if ((flags & Py_PRINT_RAW) && + PyUnicode_Check(v) && enc != Py_None) { char *cenc = PyString_AS_STRING(enc); value = PyUnicode_AsEncodedString(v, cenc, "strict"); if (value == NULL)