Message 255969 - Python tracker
The documentation for eval() indicates that it takes keyword arguments:
eval(expression, globals=None, locals=None)
However, that is incorrect, as indicated by the builtin help:
>>> help(eval)
Help on built-in function eval in module builtins:
eval(...)
eval(source[, globals[, locals]]) -> value