[Python-checkins] [3.9] Fix typo in comment (GH-26162) (GH-26165)

miss-islington webhook-mailer at python.org
Sun May 16 14:08:15 EDT 2021


https://github.com/python/cpython/commit/ea33d204ce4408b7b15ca94702b76432bab6caa3
commit: ea33d204ce4408b7b15ca94702b76432bab6caa3
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-05-16T11:08:10-07:00
summary:

[3.9] Fix typo in comment (GH-26162) (GH-26165)



(cherry picked from commit de367378f67d7e90e4015100b19277685a3c9bb3)


Co-authored-by: Ashwin Ramaswami <aramaswamis at gmail.com>

Automerge-Triggered-By: GH:iritkatriel

files:
M Lib/gzip.py

diff --git a/Lib/gzip.py b/Lib/gzip.py
index ee0cbed8f50d6d..11a5f41d56679b 100644
--- a/Lib/gzip.py
+++ b/Lib/gzip.py
@@ -516,7 +516,7 @@ def _add_read_data(self, data):
 
     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))



More information about the Python-checkins mailing list