summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-10-02 10:07:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-10-02 10:07:28 (GMT)
commit28b21e50c8f1bc9f4524b02df75b83f3b5efacb4 (patch)
treea4f79a50557f58e93c570be7e655516c2d2e894b /Misc
parent223349cfb8a7a59caf7dffee55f21c800bdb947d (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 14fa1c2..99185d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.