Home | History | Annotate | Download | only in email

Lines Matching refs:QP

23 QP          = 1 # Quoted-Printable
25 SHORTEST = 3 # the shorter of QP and base64, but only for headers
38 'iso-8859-1': (QP, QP, None),
39 'iso-8859-2': (QP, QP, None),
40 'iso-8859-3': (QP, QP, None),
41 'iso-8859-4': (QP, QP, None),
44 # iso-8859-7 is Greek, QP will not make it readable
45 # iso-8859-8 is Hebrew, QP will not make it readable
46 'iso-8859-9': (QP, QP, None),
47 'iso-8859-10': (QP, QP, None),
48 # iso-8859-11 is Thai, QP will not make it readable
49 'iso-8859-13': (QP, QP, None),
50 'iso-8859-14': (QP, QP, None),
51 'iso-8859-15': (QP, QP, None),
52 'iso-8859-16': (QP, QP, None),
53 'windows-1252':(QP, QP, None),
54 'viscii': (QP, QP, None),
117 Optional header_enc and body_enc is either Charset.QP for
119 the shortest of qp or base64 encoding, or None for no encoding. SHORTEST
181 Charset.QP (for quoted-printable), Charset.BASE64 (for
183 QP or BASE64 encoding. Otherwise, it will be None.
262 Returns "quoted-printable" if self.body_encoding is QP.
267 if self.body_encoding == QP:
342 elif self.header_encoding == QP:
370 elif self.header_encoding == QP:
398 elif self.body_encoding is QP: