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 Barro
Recipients Barro
Date 2018-07-20.09:28:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532078923.36.0.56676864532.issue34164@psf.upfronthosting.co.za>
In-reply-to
Content
Apparently base64.b32decode() also has another issue that I missed when going through the issues with base64 module:

>>> import base64
>>> base64.b32decode(b"M===============================")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/tmp/python-3.7-bin/lib/python3.7/base64.py", line 236, in b32decode
    last = acc.to_bytes(5, 'big')
OverflowError: int too big to convert
History
Date User Action Args
2018-07-20 09:28:43Barrosetrecipients: + Barro
2018-07-20 09:28:43Barrosetmessageid: <1532078923.36.0.56676864532.issue34164@psf.upfronthosting.co.za>
2018-07-20 09:28:43Barrolinkissue34164 messages
2018-07-20 09:28:43Barrocreate