Skip to content

Commit 890fe5a

Browse files
authored
Docs: multi-disk ZIP files -> multipart ZIP files (GH-141962)
* Remove some old currentlies * multi-disk -> multipart * Sentence case headings
1 parent 440bcb9 commit 890fe5a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Doc/library/zipfile.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ provides tools to create, read, write, append, and list a ZIP file. Any
1616
advanced use of this module will require an understanding of the format, as
1717
defined 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.
2020
It 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
2323
create an encrypted file. Decryption is extremely slow as it is
2424
implemented in native Python rather than C.
2525

@@ -175,7 +175,7 @@ The module defines the following items:
175175

176176
.. _zipfile-objects:
177177

178-
ZipFile Objects
178+
ZipFile objects
179179
---------------
180180

181181

@@ -248,7 +248,7 @@ ZipFile Objects
248248
.. note::
249249

250250
*metadata_encoding* is an instance-wide setting for the ZipFile.
251-
It is not currently possible to set this on a per-member basis.
251+
It is not possible to set this on a per-member basis.
252252

253253
This attribute is a workaround for legacy implementations which produce
254254
archives with names in the current locale encoding or code page (mostly
@@ -571,7 +571,7 @@ The following data attributes are also available:
571571

572572
.. _path-objects:
573573

574-
Path Objects
574+
Path objects
575575
------------
576576

577577
.. class:: Path(root, at='')
@@ -707,7 +707,7 @@ changes.
707707

708708
.. _pyzipfile-objects:
709709

710-
PyZipFile Objects
710+
PyZipFile objects
711711
-----------------
712712

713713
The :class:`PyZipFile` constructor takes the same parameters as the
@@ -784,7 +784,7 @@ The :class:`PyZipFile` constructor takes the same parameters as the
784784

785785
.. _zipinfo-objects:
786786

787-
ZipInfo Objects
787+
ZipInfo objects
788788
---------------
789789

790790
Instances of the :class:`ZipInfo` class are returned by the :meth:`.getinfo` and
@@ -954,7 +954,7 @@ Instances have the following methods and attributes:
954954
.. _zipfile-commandline:
955955
.. program:: zipfile
956956

957-
Command-Line Interface
957+
Command-line interface
958958
----------------------
959959

960960
The :mod:`zipfile` module provides a simple command-line interface to interact
@@ -1029,7 +1029,7 @@ From file itself
10291029
Decompression may fail due to incorrect password / CRC checksum / ZIP format or
10301030
unsupported compression method / decryption.
10311031

1032-
File System limitations
1032+
File system limitations
10331033
~~~~~~~~~~~~~~~~~~~~~~~
10341034

10351035
Exceeding limitations on different file systems can cause decompression failed.

0 commit comments

Comments
 (0)