[New-bugs-announce] [issue46559] base64 documentation is out-dated; altchars has to have the exact length of 2.

hello world report at bugs.python.org
Thu Jan 27 21:52:31 EST 2022


New submission from hello world <qp3839 at gmail.com>:

According to the documentation of base64 (https://docs.python.org/3/library/base64.html),

> Optional altchars must be a bytes-like object of at least length 2 (additional characters are ignored) which specifies an alternative alphabet for the + and / characters.

but this explanation is out-dated.

Actually this had been correct until the commit `4581ae5fa2450db3f00384e4b2e86654605100d4` was made for cpython in "2007".
(Thus, the explanation has been incorrect for about 15 years.)

The current implementation requires the length of `altchars` to be exactly two, as explicitly written in the comment:

> Optional altchars should be a byte string of length 2 which specifies an alternative alphabet for the '+' and '/' characters.

and the corresponding assertion is:

> assert len(altchars) == 2, repr(altchars)

----------
assignee: docs at python
components: Documentation
messages: 411967
nosy: docs at python, qp3839
priority: normal
severity: normal
status: open
title: base64 documentation is out-dated; altchars has to have the exact length of 2.
versions: Python 3.10

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue46559>
_______________________________________


More information about the New-bugs-announce mailing list