monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
[1, 2, 3].remove(4)
"""
TRACEBACK:
Traceback (most recent call last):
  File "list__remove_not_found.py", line 1, in <module>
    [1, 2, 3].remove(4)
    ~~~~~~~~~~~~~~~~~~~
ValueError: list.remove(x): x not in list
"""