summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-04 21:21:38 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-04 21:21:38 (GMT)
commitf7ed5d111bbe30b36b2629a87d9fcc291de4aafb (patch)
treea492034add126dd4216104511a035b4c2d7d8253 /Misc/NEWS
parent55b5d5c9190fe59da1551edc51b2e27a2a84790e (diff)
downloadcpython-f7ed5d111bbe30b36b2629a87d9fcc291de4aafb.zip
cpython-f7ed5d111bbe30b36b2629a87d9fcc291de4aafb.tar.gz
cpython-f7ed5d111bbe30b36b2629a87d9fcc291de4aafb.tar.bz2
#8271: the utf-8 decoder now outputs the correct number of U+FFFD characters when used with the "replace" error handler on invalid utf-8 sequences. Patch by Serhiy Storchaka, tests by Ezio Melotti.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2077c5d..73d6e37 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #8271: the utf-8 decoder now outputs the correct number of U+FFFD
+ characters when used with the 'replace' error handler on invalid utf-8
+ sequences. Patch by Serhiy Storchaka, tests by Ezio Melotti.
+
- Issue #5765: Apply a hard recursion limit in the compiler instead of
blowing the stack and segfaulting. Initial patch by Andrea Griffini.
@@ -33,7 +37,7 @@ Core and Builtins
- Issue #16271: Fix strange bugs that resulted from __qualname__ appearing in a
class's __dict__ and on type.
-- Issue #16197: Update winreg docstrings and documentation to match code.
+- Issue #16197: Update winreg docstrings and documentation to match code.
Patch by Zachary Ware.
- Issue #16241: Document -X faulthandler command line option.