https://github.com/python/cpython/commit/4f5a3493b534a95fbb01d593b1ffe320db6b395e commit: 4f5a3493b534a95fbb01d593b1ffe320db6b395e branch: master author: Maximilian Nöthe <maximilian.noethe at tu-dortmund.de> committer: Inada Naoki <songofacandy at gmail.com> date: 2019年04月24日T18:21:02+09:00 summary: fix typo in gzip.py (GH-12928) files: M Lib/gzip.py diff --git a/Lib/gzip.py b/Lib/gzip.py index 948fec293e23..7c8618741988 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py @@ -283,7 +283,7 @@ def read(self, size=-1): def read1(self, size=-1): """Implements BufferedIOBase.read1() - Reads up to a buffer's worth of data is size is negative.""" + Reads up to a buffer's worth of data if size is negative.""" self._check_not_closed() if self.mode != READ: import errno