Add chr and ord to safe_builtins
This commit is contained in:
parent
74a5b26967
commit
64fe9f82ed
1 changed files with 1 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ def active_oldest_exe(self) -> str:
|
|||
|
||||
|
||||
safe_builtins = {
|
||||
'max': max, 'min': min, 'str': str, 'repr': repr, 'abs': abs, 'len': len, 're': re,
|
||||
'max': max, 'min': min, 'str': str, 'repr': repr, 'abs': abs, 'len': len, 'chr': chr, 'ord': ord, 're': re,
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue