monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
# Test: missing positional-only when keyword is provided for other param
def f(a, /, b):
    return a + b


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