monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
r = range(5)
r[10]
"""
TRACEBACK:
Traceback (most recent call last):
  File "range__getitem_index_error.py", line 2, in <module>
    r[10]
    ~~~~~
IndexError: range object index out of range
"""