Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF
=> raise an UnicodeDecodeError. Patch written by Ezio Melotti.
diff --git a/Misc/NEWS b/Misc/NEWS
index dd2346b..5dc3a7b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
Core and Builtins
-----------------
+- Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF, raise an
+ UnicodeDecodeError
+
- Issue #6902: Fix problem with built-in types format incorrectly with
0 padding.
@@ -249,7 +252,7 @@
Documentation
-------------
-
+
- Updating `Using Python` documentation to include description of CPython's
-J, -U and -X options.