Home | History | Annotate | Download | only in email

Lines Matching refs:quoted

5 """Quoted-printable content transfer encoding per RFCs 2045-2047.
8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to
13 Quoted-printable is very space-inefficient for encoding binary files; use the
17 with quoted-printable encoding.
118 """Encode a single header line with quoted-printable (like) encoding.
120 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but
154 quoted = []
164 _max_append(quoted, '_', max_encoded)
167 _max_append(quoted, c, max_encoded)
170 _max_append(quoted, "=%02X" % ord(c), max_encoded)
176 return joiner.join(['=?%s?q?%s?=' % (charset, line) for line in quoted])
182 """Encode with quoted-printable, wrapping at maxlinelen characters.
193 76 characters). Long lines will have the `soft linefeed' quoted-printable
273 """Decode a quoted-printable string.
337 quoted-printable (like =?iso-8859-1?q?Hello_World?=) -- please use