summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-02-23 23:16:07 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-02-23 23:16:07 (GMT)
commitf20f9c299ee093fd67c5b3caf0b5013af71c3136 (patch)
treefbd924eb5d0c4f24b121074fce82ca6a5dc3a658 /Misc
parentea370a9edd7212c81921decc7e33589ad9f69389 (diff)
downloadcpython-f20f9c299ee093fd67c5b3caf0b5013af71c3136.zip
cpython-f20f9c299ee093fd67c5b3caf0b5013af71c3136.tar.gz
cpython-f20f9c299ee093fd67c5b3caf0b5013af71c3136.tar.bz2
Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF
=> raise an UnicodeDecodeError. Patch written by Ezio Melotti.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dd2346b..5dc3a7b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 4?
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 @@ Tests
Documentation
-------------
-
+
- Updating `Using Python` documentation to include description of CPython's
-J, -U and -X options.