diff --git a/Lib/zipfile.py b/Lib/zipfile.py index d2d3b693282..75dc59d1fc2 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py @@ -875,7 +875,7 @@ def readable(self): def read(self, n=-1): """Read and return up to n bytes. - If the argument is omitted, None, or negative, data is read and returned until EOF is reached.. + If the argument is omitted, None, or negative, data is read and returned until EOF is reached. """ if n is None or n < 0: buf = self._readbuffer[self._offset:]