Skip to content

Commit 53c2935

Browse files
krnickserhiy-storchaka
authored andcommitted
Fix typo duplicate period in a docstring in the zipfile module. (GH-12326)
1 parent 3fe7fa3 commit 53c2935

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/zipfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ def readable(self):
879879

880880
def read(self, n=-1):
881881
"""Read and return up to n bytes.
882-
If the argument is omitted, None, or negative, data is read and returned until EOF is reached..
882+
If the argument is omitted, None, or negative, data is read and returned until EOF is reached.
883883
"""
884884
if n is None or n < 0:
885885
buf = self._readbuffer[self._offset:]

0 commit comments

Comments
 (0)