Raised if an exception occurred in safe_eval.
| 36 | |
| 37 | |
| 38 | class EvaluationError(Exception): |
| 39 | """Raised if an exception occurred in safe_eval.""" |
| 40 | |
| 41 | |
| 42 | def safe_eval(expr: str, namespace: dict[str, Any]) -> Any: |
no outgoing calls
no test coverage detected