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

(cherry picked from commit 53c2935dac)

Co-authored-by: nick sung <sungboss2004@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-03-14 21:52:59 -07:00 committed by GitHub
parent 9818360ed9
commit 0b9bd5b4c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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:]