Package encodings :: Module quopri_codec
[hide private]
[frames] | no frames]

Module quopri_codec

Codec for quoted-printable encoding.

Like base64 and rot13, this returns Python strings, not Unicode.

Classes [hide private]
Codec
IncrementalEncoder
IncrementalDecoder
StreamWriter
StreamReader
Functions [hide private]
 
quopri_encode(input, errors='strict')
Encode the input, returning a tuple (output object, length consumed).
 
quopri_decode(input, errors='strict')
Decode the input, returning a tuple (output object, length consumed).
 
getregentry()

Imports: codecs, quopri, StringIO


Function Details [hide private]

quopri_encode(input, errors='strict')

 

Encode the input, returning a tuple (output object, length consumed).

errors defines the error handling to apply. It defaults to 'strict' handling which is the only currently supported error handling for this codec.

quopri_decode(input, errors='strict')

 

Decode the input, returning a tuple (output object, length consumed).

errors defines the error handling to apply. It defaults to 'strict' handling which is the only currently supported error handling for this codec.