]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in comment (GH-26162)
authorAshwin Ramaswami <aramaswamis@gmail.com>
Sun, 16 May 2021 15:35:41 +0000 (11:35 -0400)
committerGitHub <noreply@github.com>
Sun, 16 May 2021 15:35:41 +0000 (16:35 +0100)
Lib/gzip.py

index 9a4e0f9c00c580ddf3a2ce1ba2f7e7445afd648d..1c1e795e1715dba4dcc4716a3e7d24e47bfb32ae 100644 (file)
@@ -521,7 +521,7 @@ class _GzipReader(_compression.DecompressReader):
 
     def _read_eof(self):
         # We've read to the end of the file
-        # We check the that the computed CRC and size of the
+        # We check that the computed CRC and size of the
         # uncompressed data matches the stored values.  Note that the size
         # stored is the true file size mod 2**32.
         crc32, isize = struct.unpack("<II", self._read_exact(8))