From: nick sung Date: Thu, 14 Mar 2019 19:26:25 +0000 (+0800) Subject: Fix typo duplicate period in a docstring in the zipfile module. (GH-12326) X-Git-Tag: v3.8.0a3~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53c2935dac9d814a3d0bae504dae2ee1c941c731;p=thirdparty%2FPython%2Fcpython.git Fix typo duplicate period in a docstring in the zipfile module. (GH-12326) --- diff --git a/Lib/zipfile.py b/Lib/zipfile.py index dc16f6d464fd..61cd929f614f 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py @@ -879,7 +879,7 @@ class ZipExtFile(io.BufferedIOBase): 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:]