Orbits
1
|
Classes | |
class | Codec |
class | IncrementalEncoder |
class | IncrementalDecoder |
class | StreamWriter |
class | StreamReader |
Functions | |
def | quopri_encode |
def | quopri_decode |
def | getregentry |
Codec for quoted-printable encoding. Like base64 and rot13, this returns Python strings, not Unicode.
def encodings.quopri_codec.getregentry | ( | ) |
def encodings.quopri_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.
def encodings.quopri_codec.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.
Copyright 2014 Google Inc. All rights reserved.