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.
base64._b32{en,de}code()*
1 parent f115a55 commit ea970fbCopy full SHA for ea970fb
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