summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-15 12:43:21 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-15 12:43:21 (GMT)
commit4fb8caee87fea1707f9a754365d5ec30c9220f6f (patch)
treec2242f4c4edc984b0d6affe182576d8f8e53efcc /Misc
parentad1d5f908a51e1c6fd487e31d6f6aab98bae5c00 (diff)
downloadcpython-4fb8caee87fea1707f9a754365d5ec30c9220f6f.zip
cpython-4fb8caee87fea1707f9a754365d5ec30c9220f6f.tar.gz
cpython-4fb8caee87fea1707f9a754365d5ec30c9220f6f.tar.bz2
Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"
in any mapping, not only in an unicode string.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 150f7fc..45c0598 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"
+ in any mapping, not only in a string.
+
- Issue #11461: Fix the incremental UTF-16 decoder. Original patch by
Amaury Forgeot d'Arc.