Add base64

This commit is contained in:
Peter Stockings
2025-10-31 22:55:10 +11:00
parent 2f1cdea2ea
commit 3b41eaccea

View File

@@ -59,7 +59,7 @@ def execute_code(code, request_obj, environment):
'pow': pow, 'range': range, 'repr': repr, 'reversed': reversed, 'pow': pow, 'range': range, 'repr': repr, 'reversed': reversed,
'round': round, 'set': set, 'slice': slice, 'sorted': sorted, 'round': round, 'set': set, 'slice': slice, 'sorted': sorted,
'str': str, 'sum': sum, 'super': super, 'tuple': tuple, 'type': type, 'str': str, 'sum': sum, 'super': super, 'tuple': tuple, 'type': type,
'zip': zip, 'zip': zip, 'base64': base64,
'BaseException': BaseException, 'BaseException': BaseException,
'Exception': Exception, 'Exception': Exception,
'ArithmeticError': ArithmeticError, 'ArithmeticError': ArithmeticError,