From a1833d7cc345f5a3d039807868b840f508d452cd Mon Sep 17 00:00:00 2001 From: JUN-WEI Date: Thu, 14 Mar 2019 06:00:09 -0700 Subject: [PATCH] fix typo duplicate period in module zipifle line 882. --- Lib/zipfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/zipfile.py b/Lib/zipfile.py index dc16f6d464fde6..61cd929f614fa0 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py @@ -879,7 +879,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:]