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/bz2.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/bz2.rst')
-rw-r--r-- | Doc/library/bz2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/bz2.rst b/Doc/library/bz2.rst index 87f2cf3..dbf938a 100644 --- a/Doc/library/bz2.rst +++ b/Doc/library/bz2.rst @@ -12,7 +12,7 @@ This module provides a comprehensive interface for compressing and decompressing data using the bzip2 compression algorithm. -For related file formats, see the :mod:`gzip`, :mod:`zipfile`, and +For related file formats, see the :mod:`gzip`, :mod:`lzma`, :mod:`zipfile`, and :mod:`tarfile` modules. The :mod:`bz2` module contains: |