You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the Tirith's final_expression expression is parsed by using Python's eval() function. Though we already have the eval() usage made as safe as possible, we still need to replace it with a safer approach like using a library.
Currently, the Tirith's
final_expression
expression is parsed by using Python'seval()
function. Though we already have theeval()
usage made as safe as possible, we still need to replace it with a safer approach like using a library.An inspiration is to use:
https://github.com/pyparsing/pyparsing/blob/master/examples/simpleBool.py
The text was updated successfully, but these errors were encountered: