rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6

obj = b"abcde"
a = memoryview(obj)
assert a.obj == obj

assert a[2:3] == b"c"