summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2007-08-16 21:55:45 +0000
committerWalter Dörwald <walter@livinglogic.de>2007-08-16 21:55:45 +0000
commit41980caf644163f1ff74a793b30f1c424eeede82 (patch)
treedba1c68090fce4379eced5a27a5b8d4b4f55340c /Misc
parent066100909ae45e7acd59b2ac81338d3cfcf44384 (diff)
downloadcpython-git-41980caf644163f1ff74a793b30f1c424eeede82.tar.gz
Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and
ut-32-be). On narrow builds the codecs combine surrogate pairs in the unicode object into one codepoint on encoding and create surrogate pairs for codepoints outside the BMP on decoding. Lone surrogates are passed through unchanged in all cases. Backport to the trunk will follow.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0745f8dcfe..f00c4c7b45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -213,6 +213,8 @@ Library
- Patch #1680961: atexit has been reimplemented in C.
+- Add new codecs for UTF-32, UTF-32-LE and UTF-32-BE.
+
Build
-----