When running following test code, _read64Bit(file) returns None.
import io
import py7zlib
# read bytes start with b'\xff'
buf = io.BytesIO(b'\xff\xcd\xab\x90\x78\x56\x34\x12\xcf')
val = py7zlib.Base()._read64Bit(buf)
if val is None:
raise
This is just a validation code for a border condition.
When running following test code, _read64Bit(file) returns None.
This is just a validation code for a border condition.