diff options
author | Brett Cannon <brett@python.org> | 2013-06-17 23:58:57 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-17 23:58:57 (GMT) |
commit | 8dd823340fb993b3efffda5c4896d2a0829e6fe2 (patch) | |
tree | a3b9ab90b0482d13facee74b3e3fdc7f0f892824 /Doc | |
parent | 9674bd0a94dc487dba151636152e9f9fe67b35cc (diff) | |
download | cpython-8dd823340fb993b3efffda5c4896d2a0829e6fe2.zip cpython-8dd823340fb993b3efffda5c4896d2a0829e6fe2.tar.gz cpython-8dd823340fb993b3efffda5c4896d2a0829e6fe2.tar.bz2 |
Grammar tweak
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 c45c070..7122120 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -144,7 +144,7 @@ ZipFile Objects 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`, - :const:`ZIP_BZIP2` or :const:`ZIP_LZMA` is specified but the corresponded module + :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 ``True`` zipfile will create ZIP files that use the ZIP64 extensions when |