forked from Rust-related/RustPython
13 lines
192 B
Python
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'
|