[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-24 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 113f86e7487e9312a2494667b088854ac942ab00 by Serhiy Storchaka in branch '3.6': [3.6] bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (GH-8351) (GH-8436) https://github.com/python/cpython/commit/113f86e7487e9312a2494667b0888

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-24 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +7961 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 0b2716918345b2bff0bb5c36086d5de368125536 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.7': bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (GH-8351) (GH-8435) https://github.com/python/cpython/commit/0b2716918345

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +7960 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset ac0b3c2f4d86fc056b833a4e6b9a380741244a63 by Serhiy Storchaka in branch 'master': bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (GH-8351) https://github.com/python/cpython/commit/ac0b3c2f4d86fc056b833a4e6b9a380741244a63

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your report Jussi. The type "crash" is used for hard crashes of the Python interpreter – possibly with a core dump or a Windows error box. -- nosy: +serhiy.storchaka type: crash -> behavior versions: +Python 3.6, Python 3.8 __

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +7886 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue34164] base64.b32decode() leads into UnboundLocalError and OverflowError on some data

2018-07-20 Thread Jussi Judin
Jussi Judin added the comment: 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 "", line 1, in File "/tm