buildroot/support/testing/tests/package/sample_python_bitstring.py

7 lines
147 B
Python
Raw Normal View History

2024-02-18 09:22:07 +08:00
import bitstring
value = bitstring.BitArray("uint:12=42")
assert(value.hex == "02a")
assert(value.bin == "000000101010")
assert(value.uint == 42)