summaryrefslogtreecommitdiff
path: root/Doc/library/lzma.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+4
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #23529: Limit the size of decompressed data when reading fromAntoine Pitrou2015-04-111-0/+4
| | | | | | | | GzipFile, BZ2File or LZMAFile. This defeats denial of service attacks using compressed bombs (i.e. compressed payloads which decompress to a huge size). Patch by Martin Panter and Nikolaus Rath.
* Issue #15955: Add an option to limit output size when decompressing LZMA data.Antoine Pitrou2015-01-171-6/+31
| | | | Patch by Nikolaus Rath and Martin Panter.
* Closes #18430: Document that peek() may change the position of the underlyingNadeem Vawda2013-12-081-0/+5
|\ | | | | | | file for the BZ2File, GzipFile and LZMAFile classes.
| * #18430: Document that peek() may change the position of the underlying file forNadeem Vawda2013-12-081-0/+5
| | | | | | | | the BZ2File, GzipFile and LZMAFile classes.
* | Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
|\ \ | |/
| * Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
| |
* | Issue #19201: Add support for the 'x' mode to the lzma module.Nadeem Vawda2013-10-191-4/+11
|/ | | | Patch by Tim Heaney and Vajrasky Kok.
* Issue #17193: Use binary prefixes (KiB, MiB, GiB) for memory units.Serhiy Storchaka2013-02-161-3/+3
|
* Prefer lzma.open() over lzma.LZMAFile() in lzma module documentation.Nadeem Vawda2012-09-231-4/+4
|
* Fix indentation of examples in lzma module documentation.Nadeem Vawda2012-09-231-2/+2
|
* Make lzma.{encode,decode}_filter_properties private.Nadeem Vawda2012-06-211-26/+0
| | | | | | | | These functions were originally added to support LZMA compression in the zipfile module, and are not of interest for the majority of users. They can be made public in 3.4 if there is user interest, but in the meanwhile, I've opted to present a smaller, simpler API for the module's initial release.
* Add a function lzma.open(), to match gzip.open() and bz2.open().Nadeem Vawda2012-06-041-0/+29
|
* Allow LZMAFile to accept modes with a "b" suffix.Nadeem Vawda2012-06-041-3/+5
|
* Simplify usage of LZMAFile's fileobj support, like with BZ2File.Nadeem Vawda2012-06-041-9/+11
|
* Rename lzma.check_is_supported() to is_check_supported() to avoid ↵Nadeem Vawda2012-05-061-1/+1
| | | | grammatical confusion.
* Add lzma.{encode,decode}_filter_properties().Nadeem Vawda2012-05-061-0/+26
|
* Make lzma docs consistent with other compression modules (cf. changeset ↵Nadeem Vawda2012-02-051-3/+0
| | | | 11bd2d32b4e8).
* Document that some of LZMAFile.__init__()'s args are keyword-only.Nadeem Vawda2012-02-041-1/+1
|
* Add note on memory usage to LZMACompressor doc.Nadeem Vawda2012-01-021-2/+10
|
* Issue #6715: Add module for compression using the LZMA algorithm.Nadeem Vawda2011-11-301-0/+344