diff options
author | Georg Brandl <georg@python.org> | 2009-06-04 09:11:51 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-04 09:11:51 (GMT) |
commit | b54d801280e3f510782e2855504710947d10f053 (patch) | |
tree | 457166089bbc17f190eb7140755c7948e2918829 /Misc | |
parent | cef803f82c82017b734dd4264478ae6f02ce21f5 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |