An error raised when the interpreter cannot evaluate a Python expression, due to syntax error or unsupported operations.
| 40 | |
| 41 | |
| 42 | class InterpreterError(ValueError): |
| 43 | """ |
| 44 | An error raised when the interpreter cannot evaluate a Python expression, due to syntax error or unsupported |
| 45 | operations. |
| 46 | """ |
| 47 | |
| 48 | pass |
| 49 | |
| 50 | |
| 51 | ERRORS = { |
no outgoing calls
no test coverage detected
searching dependent graphs…