summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-06-10 12:00:55 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-06-10 12:00:55 (GMT)
commit600d3bed6c5342590ec9ad96b282c9b8fc4e9a75 (patch)
tree0182f7da58d26ce292748eca810ca3933bfd873e /Misc/NEWS
parentda62f2fe28c090f4c9cd4e611d842478faa8d22a (diff)
downloadcpython-600d3bed6c5342590ec9ad96b282c9b8fc4e9a75.zip
cpython-600d3bed6c5342590ec9ad96b282c9b8fc4e9a75.tar.gz
cpython-600d3bed6c5342590ec9ad96b282c9b8fc4e9a75.tar.bz2
Issue #8922: Normalize the encoding name in PyUnicode_AsEncodedString() to
enable shortcuts for upper case encoding name. Add also a shortcut for "iso-8859-1" in PyUnicode_AsEncodedString() and PyUnicode_Decode().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e7e858f..f0b7875 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #8922: Normalize the encoding name in PyUnicode_AsEncodedString() to
+ enable shortcuts for upper case encoding name. Add also a shortcut for
+ "iso-8859-1" in PyUnicode_AsEncodedString() and PyUnicode_Decode().
+
- Issue #8838: Remove codecs.charbuffer_encode() function. The buffer protocol
doesn't support "char buffer" anymore in Python3.