summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-06-04 09:11:51 (GMT)
committerGeorg Brandl <georg@python.org>2009-06-04 09:11:51 (GMT)
commitb54d801280e3f510782e2855504710947d10f053 (patch)
tree457166089bbc17f190eb7140755c7948e2918829 /Misc
parentcef803f82c82017b734dd4264478ae6f02ce21f5 (diff)
downloadcpython-b54d801280e3f510782e2855504710947d10f053.zip
cpython-b54d801280e3f510782e2855504710947d10f053.tar.gz
cpython-b54d801280e3f510782e2855504710947d10f053.tar.bz2
#3613: add base64.encodebytes and decodebytes as the new spelling of encodestring and decodestring; deprecate the latter.
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 e2aac90..27e9c84 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,10 @@ Core and Builtins
Library
-------
+- Issue #3613: base64.{encode,decode}string are now called
+ base64.{encode,decode}bytes which reflects what type they accept and return.
+ The old names are still there as deprecated aliases.
+
- Issue #5767: Remove sgmlop support from xmlrpc.client.
- Issue #6150: Fix test_unicode on wide-unicode builds.