monty 0.0.21

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 foo():
    snap(1)


foo()
"""
TRACEBACK:
Traceback (most recent call last):
  File "traceback__undefined_call.py", line 5, in <module>
    foo()
    ~~~~~
  File "traceback__undefined_call.py", line 2, in foo
    snap(1)
    ~~~~
NameError: name 'snap' is not defined
"""