Files
RustPython/tests/snippets/stdlib_xdrlib.py
2019-10-14 11:05:18 +09:00

13 lines
190 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'