]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39351: Remove base64.encodestring() (GH-18022)
authorVictor Stinner <vstinner@python.org>
Thu, 16 Jan 2020 09:24:16 +0000 (10:24 +0100)
committerGitHub <noreply@github.com>
Thu, 16 Jan 2020 09:24:16 +0000 (10:24 +0100)
commit210c19e3c5b86535a73487fa737752de8eb1d866
tree81473e9158c48984c4e71827275143ed3c8c9504
parentfad8b5674c66d9e00bb788e30adddb0c256c787b
bpo-39351: Remove base64.encodestring() (GH-18022)

Remove base64.encodestring() and base64.decodestring(), aliases
deprecated since Python 3.1: use base64.encodebytes() and
base64.decodebytes() instead.
Doc/library/base64.rst
Doc/whatsnew/3.9.rst
Lib/base64.py
Lib/test/test_base64.py
Misc/NEWS.d/next/Library/2020-01-16-09-27-28.bpo-39351.a-FQdv.rst [new file with mode: 0644]