Files
RustPython/extra_tests/snippets/stdlib_xdrlib.py
2020-10-10 16:59:36 +09:00

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