summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_lzma.py
Commit message (Expand)AuthorAgeFilesLines
* gh-108418: Speed up bigmem compression tests in dry mode (GH-108419)Serhiy Storchaka2023-08-251-2/+2
* bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modules (GH-7...Zackery Spytz2023-02-231-0/+4
* bpo-45975: Simplify some while-loops with walrus operator (GH-29347)Nick Drozd2022-11-261-16/+4
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-13/+2
* bpo-44439: BZ2File.write() / LZMAFile.write() handle buffer protocol correctl...Ma Lin2021-06-221-0/+9
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25190)Inada Naoki2021-04-061-6/+7
* bpo-40275: Use new test.support helper submodules in tests (GH-21169)Hai Shi2020-06-301-1/+5
* bpo-40286: Use random.randbytes() in tests (GH-19575)Victor Stinner2020-04-171-1/+1
* bpo-21872: fix lzma library decompresses data incompletely (GH-14048)animalize2019-09-121-0/+163
* bpo-37707: Exclude expensive unit tests from PGO task (GH-15009)Neil Schemenauer2019-07-301-0/+2
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)Oren Milman2018-02-131-0/+11
* Issue #27517: LZMA compressor and decompressor no longer raise exceptions ifSerhiy Storchaka2016-10-311-0/+38
|\
| * Issue #27517: LZMA compressor and decompressor no longer raise exceptions ifSerhiy Storchaka2016-10-311-0/+38
* | Issue #28229: lzma module now supports pathlibBerker Peksag2016-10-041-0/+22
* | Issue #28275: Merge bz2 fix from 3.5 into 3.6Martin Panter2016-10-011-5/+3
|\ \ | |/
| * Issue #28275: Clean up to avoid use-after-free after bzip decompress failureMartin Panter2016-10-011-5/+3
* | Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress().Serhiy Storchaka2016-09-271-0/+9
|\ \ | |/
| * Issue #28275: Fixed possible use adter free in LZMADecompressor.decompress().Serhiy Storchaka2016-09-271-0/+9
* | Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-111-2/+2
|/
* Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-1/+1
* Issue #23529: Limit the size of decompressed data when reading fromAntoine Pitrou2015-04-101-6/+19
* Issue #15955: Add an option to limit output size when decompressing LZMA data.Antoine Pitrou2015-01-171-0/+91
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-4/+5
* Closes #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.Nadeem Vawda2013-12-041-0/+26
|\
| * #19839: Fix lzma module's handling of non-lzma data at EOF.Nadeem Vawda2013-12-041-0/+26
* | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).Nadeem Vawda2013-10-281-0/+9
|\ \ | |/
| * #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).Nadeem Vawda2013-10-281-0/+9
| * Back out patch for #1159051, which caused backwards compatibility problems.Georg Brandl2013-05-121-14/+0
* | Issue #19201: Add support for the 'x' mode to the lzma module.Nadeem Vawda2013-10-181-3/+29
|/
* Fix accidental non-breakable spaces (U+00A0).Serhiy Storchaka2013-02-081-1/+1
* Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-0/+14
* Make lzma.{encode,decode}_filter_properties private.Nadeem Vawda2012-06-211-13/+13
* Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-191-0/+24
* Add a function lzma.open(), to match gzip.open() and bz2.open().Nadeem Vawda2012-06-041-0/+101
* Allow LZMAFile to accept modes with a "b" suffix.Nadeem Vawda2012-06-041-2/+17
* Simplify usage of LZMAFile's fileobj support, like with BZ2File.Nadeem Vawda2012-06-041-120/+110
* Rename lzma.check_is_supported() to is_check_supported() to avoid grammatical...Nadeem Vawda2012-05-061-4/+4
* Add lzma.{encode,decode}_filter_properties().Nadeem Vawda2012-05-061-0/+43
* Fix seekable() in BZ2File and LZMAFile to check whether the underlying file s...Nadeem Vawda2012-02-111-0/+9
* Issue #6715: Add module for compression using the LZMA algorithm.Nadeem Vawda2011-11-291-0/+1335