From 53c2935dac9d814a3d0bae504dae2ee1c941c731 Mon Sep 17 00:00:00 2001 From: nick sung Date: Fri, 15 Mar 2019 03:26:25 +0800 Subject: [PATCH] Fix typo duplicate period in a docstring in the zipfile module. (GH-12326) --- Lib/zipfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/zipfile.py b/Lib/zipfile.py index dc16f6d464f..61cd929f614 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:]