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/archiving.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/archiving.rst')
-rw-r--r-- | Doc/library/archiving.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/archiving.rst b/Doc/library/archiving.rst index f2d08ad..b7d400c 100644 --- a/Doc/library/archiving.rst +++ b/Doc/library/archiving.rst @@ -5,7 +5,8 @@ Data Compression and Archiving ****************************** The modules described in this chapter support data compression with the zlib, -gzip, and bzip2 algorithms, and the creation of ZIP- and tar-format archives. +gzip, bzip2 and lzma algorithms, and the creation of ZIP- and tar-format +archives. .. toctree:: @@ -13,5 +14,6 @@ gzip, and bzip2 algorithms, and the creation of ZIP- and tar-format archives. zlib.rst gzip.rst bz2.rst + lzma.rst zipfile.rst tarfile.rst |