DEBSOURCES
Skip Quicknav
sources / construct / 2.10.58%2Bdfsg1-1 / tests / lib / test_hex.py
1234567
from declarativeunittest import * from construct.lib.hex import * def test_hexdump(): for i in range(100): assert hexundump(hexdump(b"?"*i,32),32) == b"?"*i