commit | 4f5a3493b534a95fbb01d593b1ffe320db6b395e | [log] [tgz] |
---|---|---|
author | Maximilian Nöthe <maximilian.noethe@tu-dortmund.de> | Wed Apr 24 11:21:02 2019 +0200 |
committer | Inada Naoki <songofacandy@gmail.com> | Wed Apr 24 18:21:02 2019 +0900 |
tree | e9d7a7e31ea1345c308d02a4be6ab04b3a886e94 | |
parent | d246a6766b9d8cc625112906299c4cb019944300 [diff] |
fix typo in gzip.py (GH-12928)
diff --git a/Lib/gzip.py b/Lib/gzip.py index 948fec2..7c86187 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py
@@ -283,7 +283,7 @@ 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