| | |
- decode(input, output)
- Read 'input', apply quoted-printable decoding, and write to 'output'.
'input' and 'output' are files with readline() and write() methods.
- encode(input, output, quotetabs)
- Read 'input', apply quoted-printable encoding, and write to 'output'.
'input' and 'output' are files with readline() and write() methods.
The 'quotetabs' flag indicates whether tabs should be quoted.
- ishex(c)
- Return true if the character 'c' is a hexadecimal digit.
- needsquoting(c, quotetabs)
- Decide whether a particular character needs to be quoted.
The 'quotetabs' flag indicates whether tabs should be quoted.
- quote(c)
- Quote a single character.
- test()
- unhex(s)
- Get the integer value of a hexadecimal number.
|