monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
# Test: unexpected keyword argument on single-param function
def f(a):
    return a


f(1, b=2)
# Raise=TypeError("f() got an unexpected keyword argument 'b'")