monty 0.0.21

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
# call-external
# BUG: Reference counting bug with string augmented assignment and external calls

# String += with external call causes reference counting error
s = 'hello'
s += concat_strings(' ', 'world')
assert s == 'hello world'