monty 0.0.21

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


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