diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-04 21:21:38 (GMT) |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-04 21:21:38 (GMT) |
| commit | f7ed5d111bbe30b36b2629a87d9fcc291de4aafb (patch) | |
| tree | a492034add126dd4216104511a035b4c2d7d8253 /Misc/NEWS | |
| parent | 55b5d5c9190fe59da1551edc51b2e27a2a84790e (diff) | |
| download | cpython-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/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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. |
