Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/zipfile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ class ZipExtFile(io.BufferedIOBase):
"""

# Max size supported by decompressor.
MAX_N = 1 << 31 - 1
MAX_N = (1 << 31) - 1

# Read from compressed files in 4k blocks.
MIN_READ_SIZE = 4096
Expand Down
Loading