diff options
Diffstat (limited to 'Doc/library/zipfile.rst')
-rw-r--r-- | Doc/library/zipfile.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index e3c2217..9b0d18a 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -13,8 +13,7 @@ The ZIP file format is a common archive and compression standard. This module provides tools to create, read, write, append, and list a ZIP file. Any advanced use of this module will require an understanding of the format, as -defined in `PKZIP Application Note -<http://www.pkware.com/documents/casestudies/APPNOTE.TXT>`_. +defined in `PKZIP Application Note`_. This module does not currently handle multi-disk ZIP files. It can handle ZIP files that use the ZIP64 extensions @@ -115,7 +114,7 @@ The module defines the following items: .. seealso:: - `PKZIP Application Note <http://www.pkware.com/documents/casestudies/APPNOTE.TXT>`_ + `PKZIP Application Note`_ Documentation on the ZIP file format by Phil Katz, the creator of the format and algorithms used. @@ -511,8 +510,7 @@ Instances have the following attributes: .. attribute:: ZipInfo.extra - Expansion field data. The `PKZIP Application Note - <http://www.pkware.com/documents/casestudies/APPNOTE.TXT>`_ contains + Expansion field data. The `PKZIP Application Note`_ contains some comments on the internal structure of the data contained in this string. @@ -574,3 +572,5 @@ Instances have the following attributes: .. attribute:: ZipInfo.file_size Size of the uncompressed file. + +.. _PKZIP Application Note: https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT |