summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAshwin Ramaswami <aramaswamis@gmail.com>2021-05-16 15:35:41 (GMT)
committerGitHub <noreply@github.com>2021-05-16 15:35:41 (GMT)
commitde367378f67d7e90e4015100b19277685a3c9bb3 (patch)
treef6d49303b526cd06419a6778273875363534e0e7
parent51cef8be8c77dff522bec6f95d6853031bf19038 (diff)
downloadcpython-de367378f67d7e90e4015100b19277685a3c9bb3.zip
cpython-de367378f67d7e90e4015100b19277685a3c9bb3.tar.gz
cpython-de367378f67d7e90e4015100b19277685a3c9bb3.tar.bz2
Fix typo in comment (GH-26162)
-rw-r--r--Lib/gzip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/gzip.py b/Lib/gzip.py
index 9a4e0f9..1c1e795 100644
--- a/Lib/gzip.py
+++ b/Lib/gzip.py
@@ -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))