Commit 53c2935d authored by nick sung's avatar nick sung Committed by Serhiy Storchaka

Fix typo duplicate period in a docstring in the zipfile module. (GH-12326)

parent 3fe7fa31
......@@ -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:]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment