| Trees | Indices | Help |
|
|---|
|
|
Codec for quoted-printable encoding.
Like base64 and rot13, this returns Python strings, not Unicode.
|
|||
| Codec | |||
| IncrementalEncoder | |||
| IncrementalDecoder | |||
| StreamWriter | |||
| StreamReader | |||
|
|||
|
|||
|
|||
|
|||
Imports: codecs, quopri, StringIO
|
|||
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. |
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. |
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0 on Tue Jan 29 22:40:53 2008 | http://epydoc.sourceforge.net |