@@ -16,10 +16,10 @@ provides tools to create, read, write, append, and list a ZIP file. Any
1616advanced use of this module will require an understanding of the format, as
1717defined in `PKZIP Application Note `_.
1818
19- This module does not currently handle multi-disk ZIP files.
19+ This module does not handle multipart ZIP files.
2020It can handle ZIP files that use the ZIP64 extensions
2121(that is ZIP files that are more than 4 GiB in size). It supports
22- decryption of encrypted files in ZIP archives, but it currently cannot
22+ decryption of encrypted files in ZIP archives, but it cannot
2323create an encrypted file. Decryption is extremely slow as it is
2424implemented in native Python rather than C.
2525
@@ -140,7 +140,7 @@ The module defines the following items:
140140
141141.. _zipfile-objects :
142142
143- ZipFile Objects
143+ ZipFile objects
144144---------------
145145
146146
@@ -208,7 +208,7 @@ ZipFile Objects
208208 .. note ::
209209
210210 *metadata_encoding * is an instance-wide setting for the ZipFile.
211- It is not currently possible to set this on a per-member basis.
211+ It is not possible to set this on a per-member basis.
212212
213213 This attribute is a workaround for legacy implementations which produce
214214 archives with names in the current locale encoding or code page (mostly
@@ -530,7 +530,7 @@ The following data attributes are also available:
530530
531531.. _path-objects :
532532
533- Path Objects
533+ Path objects
534534------------
535535
536536.. class :: Path(root, at='')
@@ -666,7 +666,7 @@ changes.
666666
667667.. _pyzipfile-objects :
668668
669- PyZipFile Objects
669+ PyZipFile objects
670670-----------------
671671
672672The :class: `PyZipFile ` constructor takes the same parameters as the
@@ -743,7 +743,7 @@ The :class:`PyZipFile` constructor takes the same parameters as the
743743
744744.. _zipinfo-objects :
745745
746- ZipInfo Objects
746+ ZipInfo objects
747747---------------
748748
749749Instances of the :class: `ZipInfo ` class are returned by the :meth: `.getinfo ` and
@@ -913,7 +913,7 @@ Instances have the following methods and attributes:
913913.. _zipfile-commandline :
914914.. program :: zipfile
915915
916- Command-Line Interface
916+ Command-line interface
917917----------------------
918918
919919The :mod: `zipfile ` module provides a simple command-line interface to interact
@@ -988,7 +988,7 @@ From file itself
988988Decompression may fail due to incorrect password / CRC checksum / ZIP format or
989989unsupported compression method / decryption.
990990
991- File System limitations
991+ File system limitations
992992~~~~~~~~~~~~~~~~~~~~~~~
993993
994994Exceeding limitations on different file systems can cause decompression failed.
0 commit comments