[Python-checkins] cpython (3.5): Issue #29013: Fix allowZip64 documentation

berker.peksag python-checkins at python.org
Sun Jan 1 22:12:13 EST 2017


https://hg.python.org/cpython/rev/4685cd33087b
changeset:   105932:4685cd33087b
branch:      3.5
parent:      105929:721df314d45a
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Mon Jan 02 06:13:42 2017 +0300
summary:
  Issue #29013: Fix allowZip64 documentation

Zip files can be larger than 4 GiB if allowZip64
is true (default since Python 3.4)

files:
  Doc/library/zipfile.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst
--- a/Doc/library/zipfile.rst
+++ b/Doc/library/zipfile.rst
@@ -152,7 +152,7 @@
    (:mod:`zlib`, :mod:`bz2` or :mod:`lzma`) is not available, :exc:`RuntimeError`
    is also raised. The default is :const:`ZIP_STORED`.  If *allowZip64* is
    ``True`` (the default) zipfile will create ZIP files that use the ZIP64
-   extensions when the zipfile is larger than 2 GiB. If it is  false :mod:`zipfile`
+   extensions when the zipfile is larger than 4 GiB. If it is  false :mod:`zipfile`
    will raise an exception when the ZIP file would require ZIP64 extensions.
 
    If the file is created with mode ``'w'``, ``'x'`` or ``'a'`` and then

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list