summaryrefslogtreecommitdiff
path: root/Lib/gzip.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-05-16 11:08:57 -0700
committerGitHub <noreply@github.com>2021-05-16 11:08:57 -0700
commit68b79f75c535724eb526ed68ad7a73c8cb7956b1 (patch)
treeda39160ec7f25ead103dfc10dfe0bd24fcc1d791 /Lib/gzip.py
parent9b59b6fff8121b2b0611f807fd310ca743ce3d25 (diff)
downloadcpython-git-68b79f75c535724eb526ed68ad7a73c8cb7956b1.tar.gz
[3.10] Fix typo in comment (GH-26162) (GH-26164)
(cherry picked from commit de367378f67d7e90e4015100b19277685a3c9bb3) Co-authored-by: Ashwin Ramaswami <aramaswamis@gmail.com> Automerge-Triggered-By: GH:iritkatriel
Diffstat (limited to 'Lib/gzip.py')
-rw-r--r--Lib/gzip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/gzip.py b/Lib/gzip.py
index 9a4e0f9c00..1c1e795e17 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))