monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
import math

math.acos(2)
"""
TRACEBACK:
Traceback (most recent call last):
  File "math__acos_domain_error.py", line 3, in <module>
    math.acos(2)
    ~~~~~~~~~~~~
ValueError: expected a number in range from -1 up to 1, got 2.0
"""