]> granicus.if.org Git - python/commitdiff
Issue #29013: Merge from 3.5
authorBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:14:12 +0000 (06:14 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Mon, 2 Jan 2017 03:14:12 +0000 (06:14 +0300)
1  2 
Doc/library/zipfile.rst

index 905648914b37570a7e5c6ae387a2d25c91e8e5d3,d144ae36f1e7cbc7b3bbd6bf4eb117f3d85765dd..5eb6f103380661d8017f4a4fb7afe8b8bc12fec1
@@@ -147,12 -147,12 +147,12 @@@ ZipFile Object
     *compression* is the ZIP compression method to use when writing the archive,
     and should be :const:`ZIP_STORED`, :const:`ZIP_DEFLATED`,
     :const:`ZIP_BZIP2` or :const:`ZIP_LZMA`; unrecognized
 -   values will cause :exc:`RuntimeError` to be raised.  If :const:`ZIP_DEFLATED`,
 +   values will cause :exc:`NotImplementedError` to be raised.  If :const:`ZIP_DEFLATED`,
     :const:`ZIP_BZIP2` or :const:`ZIP_LZMA` is specified but the corresponding module
     (:mod:`zlib`, :mod:`bz2` or :mod:`lzma`) is not available, :exc:`RuntimeError`
 -   is also raised. The default is :const:`ZIP_STORED`.  If *allowZip64* is
 +   is 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