diff options
author | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-02-05 13:07:43 (GMT) |
---|---|---|
committer | Nadeem Vawda <nadeem.vawda@gmail.com> | 2012-02-05 13:07:43 (GMT) |
commit | fb39063202a020371c464627dd8b9d563c2dbf76 (patch) | |
tree | ec4654243183b243c8a266738a89dc21bd2bb496 /Doc/library/lzma.rst | |
parent | cd0d951a707c0dbecfd45c14b0e6ec7bf83103a2 (diff) | |
download | cpython-fb39063202a020371c464627dd8b9d563c2dbf76.zip cpython-fb39063202a020371c464627dd8b9d563c2dbf76.tar.gz cpython-fb39063202a020371c464627dd8b9d563c2dbf76.tar.bz2 |
Make lzma docs consistent with other compression modules (cf. changeset 11bd2d32b4e8).
Diffstat (limited to 'Doc/library/lzma.rst')
-rw-r--r-- | Doc/library/lzma.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/library/lzma.rst b/Doc/library/lzma.rst index fc0a148..cae05b6 100644 --- a/Doc/library/lzma.rst +++ b/Doc/library/lzma.rst @@ -14,9 +14,6 @@ decompressing data using the LZMA compression algorithm. Also included is a file interface supporting the ``.xz`` and legacy ``.lzma`` file formats used by the :program:`xz` utility, as well as raw compressed streams. -For related file formats, see the :mod:`bz2`, :mod:`gzip`, :mod:`zipfile`, and -:mod:`tarfile` modules. - The interface provided by this module is very similar to that of the :mod:`bz2` module. However, note that :class:`LZMAFile` is *not* thread-safe, unlike :class:`bz2.BZ2File`, so if you need to use a single :class:`LZMAFile` instance |