diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-10 12:00:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-10 12:00:55 (GMT) |
commit | 600d3bed6c5342590ec9ad96b282c9b8fc4e9a75 (patch) | |
tree | 0182f7da58d26ce292748eca810ca3933bfd873e /Misc | |
parent | da62f2fe28c090f4c9cd4e611d842478faa8d22a (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |