This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mouse07410
Recipients docs@python, mouse07410
Date 2015-10-27.23:10:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1445987417.55.0.122139453671.issue25495@psf.upfronthosting.co.za>
In-reply-to
Content
binascii b2a_base64() documentation says:

The length of data should be at most 57 to adhere to the base64 standard.

This is incorrect, because there is no base64 standard that restricts the length of input data, especially to such a small value.

What RFC4648 (that superseded RFC3548 that your documentation still keeps referring to) actually says is that MIME enforces the limit ofthe OUTPUT LINE length at 76, but NOT of the entire output, and certainly not of the entire input.

Please correct the documentation, making it conformant with what the ACTUAL base64 standard says.

See https://en.wikipedia.org/wiki/Base64 and
https://tools.ietf.org/html/rfc4648

Thanks!
History
Date User Action Args
2015-10-27 23:10:17mouse07410setrecipients: + mouse07410, docs@python
2015-10-27 23:10:17mouse07410setmessageid: <1445987417.55.0.122139453671.issue25495@psf.upfronthosting.co.za>
2015-10-27 23:10:17mouse07410linkissue25495 messages
2015-10-27 23:10:16mouse07410create