Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a255a72 commit 8d3ce5aCopy full SHA for 8d3ce5a
1 file changed
Python/ceval.c
@@ -1362,6 +1362,7 @@ eval_frame(PyFrameObject *f)
1362
s[len-1] != ' ')
1363
PyFile_SoftSpace(w, 0);
1364
}
1365
+#ifdef Py_USING_UNICODE
1366
else if (PyUnicode_Check(v)) {
1367
Py_UNICODE *s = PyUnicode_AS_UNICODE(v);
1368
int len = PyUnicode_GET_SIZE(v);
@@ -1370,6 +1371,7 @@ eval_frame(PyFrameObject *f)
1370
1371
1372
1373
1374
+#endif
1375
1376
Py_DECREF(v);
1377
Py_XDECREF(stream);
0 commit comments