Commit 73e38809 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #16980: Fix processing of escaped non-ascii bytes in the

unicode-escape-decode decoder.
parent e58785b2
...@@ -12,6 +12,9 @@ What's New in Python 3.3.1? ...@@ -12,6 +12,9 @@ What's New in Python 3.3.1?
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #16980: Fix processing of escaped non-ascii bytes in the
unicode-escape-decode decoder.
- Issue #16975: Fix error handling bug in the escape-decode bytes decoder. - Issue #16975: Fix error handling bug in the escape-decode bytes decoder.
- Issue #14850: Now a charmap decoder treats U+FFFE as "undefined mapping" - Issue #14850: Now a charmap decoder treats U+FFFE as "undefined mapping"
......
...@@ -5725,7 +5725,7 @@ PyUnicode_DecodeUnicodeEscape(const char *s, ...@@ -5725,7 +5725,7 @@ PyUnicode_DecodeUnicodeEscape(const char *s,
} }
else { else {
WRITECHAR('\\'); WRITECHAR('\\');
WRITECHAR(s[-1]); WRITECHAR((unsigned char)s[-1]);
} }
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment