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.

classification
Title: 'base64' has no attribute 'decodestring'
Type: crash Stage: resolved
Components: Build Versions: Python 3.9
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: michalisaggela, xtreak
Priority: normal Keywords:

Created on 2020-11-12 07:08 by michalisaggela, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg380805 - (view) Author: michalis aggela (michalisaggela) Date: 2020-11-12 07:08
File "/Users/michaelmouchametai/Downloads/google-cloud-sdk/platform/gsutil/gslib/utils/encryption_helper.py", line 152, in Base64Sha256FromBase64EncryptionKey
    decoded_bytes = base64.decodestring(csek_encryption_key)
AttributeError: module 'base64' has no attribute 'decodestring'
msg380806 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2020-11-12 08:27
The tracker is for issues related to CPython. This seems to be an issue with gsutil on Python 3.9 compatibility. This seems to have been fixed as below :

https://github.com/GoogleCloudPlatform/gsutil/issues/1118
History
Date User Action Args
2022-04-11 14:59:38adminsetgithub: 86497
2020-11-12 08:27:27xtreaksetstatus: open -> closed

nosy: + xtreak
messages: + msg380806

resolution: third party
stage: resolved
2020-11-12 07:08:49michalisaggelacreate