Skip to content

Commit 0804293

Browse files
hugovkmiss-islington
authored andcommitted
Docs: multi-disk ZIP files -> multipart ZIP files (GH-141962)
* Remove some old currentlies * multi-disk -> multipart * Sentence case headings (cherry picked from commit 890fe5a) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent 2f3024f commit 0804293

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

@@ -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

672672
The :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

749749
Instances 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

919919
The :mod:`zipfile` module provides a simple command-line interface to interact
@@ -988,7 +988,7 @@ From file itself
988988
Decompression may fail due to incorrect password / CRC checksum / ZIP format or
989989
unsupported compression method / decryption.
990990

991-
File System limitations
991+
File system limitations
992992
~~~~~~~~~~~~~~~~~~~~~~~
993993

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

0 commit comments

Comments
 (0)