monty 0.0.20

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
# Test: missing all positional-only arguments
def f(a, b, /):
    return a + b


f()
# Raise=TypeError("f() missing 2 required positional arguments: 'a' and 'b'")