202
200
# We then check the that the computed CRC and size of the
203
201
# uncompressed data matches the stored values. Note that the size
204
202
# stored is the true file size mod 2**32.
207
204
crc32, isize = struct.unpack("<LL", self._gzip_tail)
208
205
# note that isize is unsigned - it can exceed 2GB
209
206
if crc32 != U32(self.crc):