Lines Matching refs:QP
24 QP = 1 # Quoted-Printable
26 SHORTEST = 3 # the shorter of QP and base64, but only for headers
41 'iso-8859-1': (QP, QP, None),
42 'iso-8859-2': (QP, QP, None),
43 'iso-8859-3': (QP, QP, None),
44 'iso-8859-4': (QP, QP, None),
47 # iso-8859-7 is Greek, QP will not make it readable
48 # iso-8859-8 is Hebrew, QP will not make it readable
49 'iso-8859-9': (QP, QP, None),
50 'iso-8859-10': (QP, QP, None),
51 # iso-8859-11 is Thai, QP will not make it readable
52 'iso-8859-13': (QP, QP, None),
53 'iso-8859-14': (QP, QP, None),
54 'iso-8859-15': (QP, QP, None),
55 'iso-8859-16': (QP, QP, None),
56 'windows-1252':(QP, QP, None),
57 'viscii': (QP, QP, None),
118 Optional header_enc and body_enc is either Charset.QP for
193 Charset.QP (for quoted-printable), Charset.BASE64 (for
195 QP or BASE64 encoding. Otherwise, it will be None.
264 Returns "quoted-printable" if self.body_encoding is QP.
269 if self.body_encoding == QP:
368 elif self.header_encoding == QP:
395 elif self.body_encoding is QP: