Files
RustPython/tests/snippets/test_xdrlib.py
Windel Bouwman ddc24d67dc Add xdrlib.py
2019-06-29 14:44:39 +02:00

14 lines
191 B
Python

# 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'