monty 0.0.20

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


f(1, 2)
# Raise=TypeError("f() missing 1 required positional argument: 'c'")