summaryrefslogtreecommitdiffstats
path: root/Modules/_bz2module.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ↵Nadeem Vawda2011-10-131-12/+4
| | | | | | linear-time one. Also fix the bz2 module, which suffered from the same problem.
* Fix 64-bit safety issue in BZ2Compressor and BZ2Decompressor.Nadeem Vawda2011-04-121-9/+24
|
* Issue #5863: Rewrite BZ2File in pure Python, and allow it to acceptAntoine Pitrou2011-04-031-0/+583
file-like objects using a new `fileobj` constructor argument. Patch by Nadeem Vawda.