monty 0.0.20

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def outer():
    return missing_func()


outer()
"""
TRACEBACK:
Traceback (most recent call last):
  File "name_error__undefined_call_in_function.py", line 5, in <module>
    outer()
    ~~~~~~~
  File "name_error__undefined_call_in_function.py", line 2, in outer
    return missing_func()
           ~~~~~~~~~~~~
NameError: name 'missing_func' is not defined
"""