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


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