]> granicus.if.org Git - python/commitdiff
Issue #29013: Fix allowZip64 documentation
authorBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:13:42 +0000 (06:13 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:13:42 +0000 (06:13 +0300)
Zip files can be larger than 4 GiB if allowZip64
is true (default since Python 3.4)

Doc/library/zipfile.rst

index bf482d265f304b0916ea14d4e72de140bfe14ce1..d144ae36f1e7cbc7b3bbd6bf4eb117f3d85765dd 100644 (file)
@@ -152,7 +152,7 @@ ZipFile Objects
    (: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