From: Maximilian Nöthe Date: Wed, 24 Apr 2019 09:21:02 +0000 (+0200) Subject: fix typo in gzip.py (GH-12928) X-Git-Tag: v3.8.0a4~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f5a3493b534a95fbb01d593b1ffe320db6b395e;p=python fix typo in gzip.py (GH-12928) --- diff --git a/Lib/gzip.py b/Lib/gzip.py index 948fec293e..7c86187419 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py @@ -283,7 +283,7 @@ class GzipFile(_compression.BaseStream): 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