summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2005-10-23 13:43:40 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2005-10-23 13:43:40 (GMT)
commita5bafc43d7cfb3f635eeb51eff728efbfca363fb (patch)
treeee9ca3ecf00c17cc3c0caa4dcbf538e03e314d3a /Misc/NEWS
parentf3ddaee9a04bd21160712dc184c03c86ec61b102 (diff)
downloadcpython-a5bafc43d7cfb3f635eeb51eff728efbfca363fb.zip
cpython-a5bafc43d7cfb3f635eeb51eff728efbfca363fb.tar.gz
cpython-a5bafc43d7cfb3f635eeb51eff728efbfca363fb.tar.bz2
Add news item for the new charmap codecs.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 05ca0fd..8ee1e35 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,14 @@ What's New in Python 2.5 alpha 1?
Core and builtins
-----------------
+- Replaced most Unicode charmap codecs with new ones using the
+ new Unicode translate string feature in the builtin charmap
+ codec; the codecs were created from the mapping tables available
+ at ftp.unicode.org and contain a few updates (e.g. the Mac OS
+ encodings now include a mapping for the Apple logo)
+
+- Added a few more codecs for Mac OS encodings
+
- Speed up some Unicode operations.
- A new AST parser implementation was completed.