diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-02 10:07:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-10-02 10:07:28 (GMT) |
commit | 28b21e50c8f1bc9f4524b02df75b83f3b5efacb4 (patch) | |
tree | a4f79a50557f58e93c570be7e655516c2d2e894b /Misc | |
parent | 223349cfb8a7a59caf7dffee55f21c800bdb947d (diff) | |
download | cpython-28b21e50c8f1bc9f4524b02df75b83f3b5efacb4.zip cpython-28b21e50c8f1bc9f4524b02df75b83f3b5efacb4.tar.gz cpython-28b21e50c8f1bc9f4524b02df75b83f3b5efacb4.tar.bz2 |
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:
1. Non-ASCII bytes were accepted after shift sequence.
2. A low surrogate could be emitted in case of error in high surrogate.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ Release date: tba Core and Builtins ----------------- +- Issue #24848: Fixed a number of bugs in UTF-7 decoding of misformed data. + - Issue #25280: Import trace messages emitted in verbose (-v) mode are no longer formatted twice. |