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

iritkatriel webhook-mailer at python.org
Sun May 16 11:35:46 EDT 2021


https://github.com/python/cpython/commit/de367378f67d7e90e4015100b19277685a3c9bb3
commit: de367378f67d7e90e4015100b19277685a3c9bb3
branch: main
author: Ashwin Ramaswami <aramaswamis at gmail.com>
committer: iritkatriel <iritkatriel at yahoo.com>
date: 2021-05-16T16:35:41+01:00
summary:

Fix typo in comment (GH-26162)

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