[Python-checkins] [3.10] Fix typo in comment (GH-26162) (GH-26164)

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


https://github.com/python/cpython/commit/68b79f75c535724eb526ed68ad7a73c8cb7956b1
commit: 68b79f75c535724eb526ed68ad7a73c8cb7956b1
branch: 3.10
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:57-07:00
summary:

[3.10] Fix typo in comment (GH-26162) (GH-26164)



(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 9a4e0f9c00c58..1c1e795e1715d 100644
--- a/Lib/gzip.py
+++ b/Lib/gzip.py
@@ -521,7 +521,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