Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Lib/base64.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ def urlsafe_b64decode(s):
_b32rev = {}

def _b32encode(alphabet, s):
global _b32tab2
# Delay the initialization of the table to not waste memory
# if the function is never called
if alphabet not in _b32tab2:
Expand Down Expand Up @@ -200,7 +199,6 @@ def _b32encode(alphabet, s):
return bytes(encoded)

def _b32decode(alphabet, s, casefold=False, map01=None):
global _b32rev
# Delay the initialization of the table to not waste memory
# if the function is never called
if alphabet not in _b32rev:
Expand Down