summaryrefslogtreecommitdiff
path: root/Lib/test/test_bz2.py
Commit message (Expand)AuthorAgeFilesLines
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Issue #28664: test_bz2 now works on non-Windows platforms without bunzip2Serhiy Storchaka2016-11-111-33/+26
|\
| * Issue #28664: test_bz2 now works on non-Windows platforms without bunzip2Serhiy Storchaka2016-11-111-33/+26
* | Issue #28225: bz2 module now supports pathlibBerker Peksag2016-10-021-0/+8
* | Issue #28275: Merge bz2 fix from 3.5 into 3.6Martin Panter2016-10-011-0/+6
|\ \ | |/
| * Issue #28275: Clean up to avoid use-after-free after bzip decompress failureMartin Panter2016-10-011-0/+6
* | Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-111-2/+2
|/
* Issue #23529: Limit the size of decompressed data when reading fromAntoine Pitrou2015-04-111-9/+21
* Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-4/+2
|\
| * Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-011-4/+2
* | Issue #15955: Add an option to limit the output size in bz2.decompress().Antoine Pitrou2015-02-261-0/+103
|/
* Use os.devnull instead of hardcoded '/dev/null'.Serhiy Storchaka2015-02-151-5/+5
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-4/+6
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-1/+0
|\
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-1/+0
* | Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-101-1/+1
|\ \ | |/
| * Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-101-1/+1
* | Closes #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.Nadeem Vawda2013-12-041-93/+125
|\ \ | |/ |/|
| * #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).Nadeem Vawda2013-10-281-93/+125
| |\
| | * Issue #19223: Add support for the 'x' mode to the bz2 module.Nadeem Vawda2013-10-191-36/+57
| | * Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-72/+69
| | |\
| | | * Issue #16828: Fix error incorrectly raised by bz2.compress(b'') and bz2.BZ2Co...Nadeem Vawda2013-01-021-72/+70
| | | |\
| | | | * Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-3/+3
| | | | * Merge: Add test for BZ2Decompressor.decompress("") after end of stream.Nadeem Vawda2012-10-281-0/+1
| | | | |\
| | | | * | Stylistic tweaks to the bz2 module to make it easier to transplant changes fromNadeem Vawda2012-10-081-69/+67
| | | | * | Closes #16135: Removal of OS/2 supportJesus Cea2012-10-051-1/+1
* | | | | | #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.Nadeem Vawda2013-12-041-1/+29
|/ / / / /
* | | | | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).Nadeem Vawda2013-10-281-0/+10
* | | | | Back out patch for #1159051, which caused backwards compatibility problems.Georg Brandl2013-05-121-14/+0
|/ / / /
* | | | Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-0/+14
|\ \ \ \ | |/ / / |/| | |
| * | | Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-0/+18
* | | | Issue #16828: Fix error incorrectly raised by bz2.compress('').Nadeem Vawda2013-01-021-118/+486
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Merge: Add test for BZ2Decompressor.decompress("") after end of stream.Nadeem Vawda2012-10-281-0/+1
| |\ \ | | |/ | |/|
| * | Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-201-83/+489
| |\ \
| | * | Add a function bz2.open(), to match gzip.open().Nadeem Vawda2012-06-041-11/+106
| | * | Make BZ2File's fileobj support easier to use.Nadeem Vawda2012-06-041-13/+27
| | * | Fix seekable() in BZ2File and LZMAFile to check whether the underlying file s...Nadeem Vawda2012-02-121-0/+9
| | * | Issue #13809: Make bz2 module work with threads disabled.Nadeem Vawda2012-01-181-0/+7
| | * | Make error handling in BZ2File.{readable,seekable,writable,fileno} consistent...Nadeem Vawda2011-11-301-1/+56
| | * | Start fixing test_bigmem:Antoine Pitrou2011-10-041-71/+282
| | |\ \ | |/ / /
| | * | BZ2File now uses the compresslevel argument given by the caller,Nadeem Vawda2011-09-111-0/+7
| | * | Issue #12451: Open the test file in binary mode in test_bz2, the text file isVictor Stinner2011-06-301-1/+1
| | * | Simplify line-oriented tests in test_bz2.Nadeem Vawda2011-05-301-14/+7
| | * | Issue #1625: Add stream ordering test to test_bz2.Nadeem Vawda2011-05-301-0/+11
| | * | Remove unused data from test_bz2.Nadeem Vawda2011-05-301-13/+6
| | * | Miscellaneous cleanups to bz2 and test_bz2 following issue #1625.Nadeem Vawda2011-05-301-70/+19
| | * | Issue #1625: BZ2File and bz2.decompress() now support multi-stream files.Nadeem Vawda2011-05-271-2/+124
| | * | Fix 64-bit safety issue in BZ2Compressor and BZ2Decompressor.Nadeem Vawda2011-04-121-1/+35
| | * | Issue #5863: Rewrite BZ2File in pure Python, and allow it to acceptAntoine Pitrou2011-04-031-20/+122
| |/ /
* | | Issue #16828: Fix error incorrectly raised by bz2.compress('').Nadeem Vawda2013-01-021-0/+15
| |/ |/|