140
144
# We then check the that the computed CRC and size of the
141
145
# uncompressed data matches the stored values. Note that the size
142
146
# stored is the true file size mod 2**32.
144
149
# note that isize is unsigned - it can exceed 2GB
145
150
if crc32 != U32(self.crc):
146
151
raise IOError, "CRC check failed %d %d" % (crc32, U32(self.crc))