diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-01-02 03:14:12 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-01-02 03:14:12 (GMT) |
commit | 5430293fdf286b33f2370d15705ee4339c81e82c (patch) | |
tree | ffe73536a5152069a80e6d6634e797154c80f3c2 /Doc | |
parent | a22457ecaff3e5c37f383b68449c9ca61368a6be (diff) | |
parent | 4950ae14916e340e5274ce0b8277aec9006bd035 (diff) | |
download | cpython-5430293fdf286b33f2370d15705ee4339c81e82c.zip cpython-5430293fdf286b33f2370d15705ee4339c81e82c.tar.gz cpython-5430293fdf286b33f2370d15705ee4339c81e82c.tar.bz2 |
Issue #29013: Merge from 3.5
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/zipfile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index 9056489..5eb6f10 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -152,7 +152,7 @@ ZipFile Objects (:mod:`zlib`, :mod:`bz2` or :mod:`lzma`) is not available, :exc:`RuntimeError` 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 |