summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2004-07-10 16:16:06 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2004-07-10 16:16:06 (GMT)
commit88fcca681502f020a75ed17b174ab264c47811c7 (patch)
treea7c2f388ef62e3fcd0f774ad2d27b45f16d6f6dd /Misc
parent21f9fce968624fd25c95dc408cfd51614021ea17 (diff)
downloadcpython-88fcca681502f020a75ed17b174ab264c47811c7.zip
cpython-88fcca681502f020a75ed17b174ab264c47811c7.tar.gz
cpython-88fcca681502f020a75ed17b174ab264c47811c7.tar.bz2
Added note about new codecs module APIs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6cd3dcb..e17cfdf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,10 @@ Library
- decimal.py now only uses signals in the spec. The other conditions are
no longer part of the public API.
+- codecs module now has two new generic APIs: encode() and decode()
+ which don't restrict the return types (unlike the unicode and
+ string methods of the same name).
+
Tools/Demos
-----------