We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e5762a commit e07565cCopy full SHA for e07565c
Lib/base64.py
@@ -164,7 +164,6 @@ def urlsafe_b64decode(s):
164
_b32rev = {}
165
166
def _b32encode(alphabet, s):
167
- global _b32tab2
168
# Delay the initialization of the table to not waste memory
169
# if the function is never called
170
if alphabet not in _b32tab2:
@@ -200,7 +199,6 @@ def _b32encode(alphabet, s):
200
199
return bytes(encoded)
201
202
def _b32decode(alphabet, s, casefold=False, map01=None):
203
- global _b32rev
204
205
206
if alphabet not in _b32rev:
0 commit comments