monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
x = 1 + missing_func()
"""
TRACEBACK:
Traceback (most recent call last):
  File "name_error__undefined_call_in_expr.py", line 1, in <module>
    x = 1 + missing_func()
            ~~~~~~~~~~~~
NameError: name 'missing_func' is not defined
"""