monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
# Test multiple references to the same cyclic object
f = []
f.append(f)
g = [f, f]
g
# Return=[[[...]], [[...]]]