Home | History | Annotate | Download | only in encodings

Lines Matching refs:Codec

1 """ Python 'bz2_codec' Codec - bz2 compression encoding
3 Unlike most of the other codecs which target Unicode, this codec
11 import bz2 # this codec needs the optional bz2 module !
13 ### Codec APIs
22 error handling for this codec.
40 error handling for this codec.
47 class Codec(codecs.Codec):
85 class StreamWriter(Codec,codecs.StreamWriter):
88 class StreamReader(Codec,codecs.StreamReader):