mirror of https://github.com/python/cpython
Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead
of \\.
This commit is contained in:
parent
e4874aeab0
commit
ad9744a67a
|
@ -1758,6 +1758,7 @@ PyObject *unicodeescape_string(const Py_UNICODE *s,
|
||||||
(ch == (Py_UNICODE) PyString_AS_STRING(repr)[1] || ch == '\\')) {
|
(ch == (Py_UNICODE) PyString_AS_STRING(repr)[1] || ch == '\\')) {
|
||||||
*p++ = '\\';
|
*p++ = '\\';
|
||||||
*p++ = (char) ch;
|
*p++ = (char) ch;
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Py_UNICODE_WIDE
|
#ifdef Py_UNICODE_WIDE
|
||||||
|
|
Loading…
Reference in New Issue