summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-11-13 14:24:31 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-11-13 14:24:31 (GMT)
commitd4fdbcc0784b715c0b82ecdf3e9cbbe535f46524 (patch)
treebcc0cc2de2df5d79970758912d5b0217b7040197 /Doc
parent8b097b4ed726b8282fce582cb2c20ab9c986fc21 (diff)
downloadcpython-d4fdbcc0784b715c0b82ecdf3e9cbbe535f46524.zip
cpython-d4fdbcc0784b715c0b82ecdf3e9cbbe535f46524.tar.gz
cpython-d4fdbcc0784b715c0b82ecdf3e9cbbe535f46524.tar.bz2
Issue #17839: mention base64 change in What's New
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index a04aee8..197702a 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -327,6 +327,14 @@ audioop
Added support for 24-bit samples (:issue:`12866`).
+base64
+------
+
+The encoding and decoding functions in :mod:`base64` now accept any
+:term:`bytes-like object` in cases where it previously required a
+:class:`bytes` or :class:`bytearray` instance (:issue`17839`)
+
+
colorsys
--------