rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
7
8
9
10
11
12
13

# This probably will be superceeded by the python unittests when that works.

import xdrlib

p = xdrlib.Packer()
p.pack_int(1337)

d = p.get_buffer()

print(d)

assert d == b'\x00\x00\x059'