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