summaryrefslogtreecommitdiffstats
path: root/Lib/encodings/bz2_codec.py
Commit message (Collapse)AuthorAgeFilesLines
* Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders.Georg Brandl2006-10-291-4/+25
|
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-2/+19
| | | | | | | of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added.
* Revert previous change. MAL preferred the old version.Raymond Hettinger2003-12-011-4/+41
|
* Simplifed the code.Raymond Hettinger2003-12-011-41/+4
|
* Fix typo in the comments.Raymond Hettinger2003-09-241-1/+1
|
* Added codec for bz2 compression.Raymond Hettinger2003-09-231-0/+64