diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-11-29 22:25:06 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2011-11-29 22:25:06 (GMT) |
commit | 3ff069ebc6884c46c3f99ea61919f7728708c571 (patch) | |
tree | 7841d724ab68fcd5aef276e06092ed15ae293e44 /Doc/library/gzip.rst | |
parent | 551ac957331ff7f2a08436198b73f9c0245987e0 (diff) | |
download | cpython-3ff069ebc6884c46c3f99ea61919f7728708c571.zip cpython-3ff069ebc6884c46c3f99ea61919f7728708c571.tar.gz cpython-3ff069ebc6884c46c3f99ea61919f7728708c571.tar.bz2 |
Issue #6715: Add module for compression using the LZMA algorithm.
Diffstat (limited to 'Doc/library/gzip.rst')
-rw-r--r-- | Doc/library/gzip.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst index a5e08c9..4491acc 100644 --- a/Doc/library/gzip.rst +++ b/Doc/library/gzip.rst @@ -21,7 +21,7 @@ Note that additional file formats which can be decompressed by the :program:`gzip` and :program:`gunzip` programs, such as those produced by :program:`compress` and :program:`pack`, are not supported by this module. -For other archive formats, see the :mod:`bz2`, :mod:`zipfile`, and +For related file formats, see the :mod:`bz2`, :mod:`lzma`, :mod:`zipfile`, and :mod:`tarfile` modules. The module defines the following items: |