monty 0.0.20

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
def f(**kwargs):
    pass


f(**{'x': 1}, **{'x': 2})
# Raise=TypeError("f() got multiple values for keyword argument 'x'")