summaryrefslogtreecommitdiffstats
path: root/Lib/bz2.py
Commit message (Collapse)AuthorAgeFilesLines
* BZ2File now uses the compresslevel argument given by the caller,Nadeem Vawda2011-09-111-2/+2
| | | | instead of ignoring it and always using a compression level of 9.
* Miscellaneous cleanups to bz2 and test_bz2 following issue #1625.Nadeem Vawda2011-05-291-3/+3
| | | | | | | * In bz2.decompress(), concatenate partial results in a way that should be more friendly to other Python implementations * Remove redundant comments in test_bz2 * Use 'while True:' instead of 'while 1:'
* Issue #1625: BZ2File and bz2.decompress() now support multi-stream files.Nadeem Vawda2011-05-261-13/+34
| | | | Initial patch by Nir Aides.
* Fix typo in bz2 module.Nadeem Vawda2011-05-241-1/+1
|
* Fix whitespaceAntoine Pitrou2011-04-031-2/+2
|
* Issue #5863: Rewrite BZ2File in pure Python, and allow it to acceptAntoine Pitrou2011-04-031-0/+392
file-like objects using a new `fileobj` constructor argument. Patch by Nadeem Vawda.