Home | History | Annotate | Download | only in email

Lines Matching refs:decoded

67     decoded parts of the header.  Charset is None for non-encoded parts of the
78 decoded = []
83 decoded.append((line, None))
90 if decoded and decoded[-1][1] is None:
91 decoded[-1] = (decoded[-1][0] + SPACE + unenc, None)
93 decoded.append((unenc, None))
114 if decoded and decoded[-1][1] == charset:
115 decoded[-1] = (decoded[-1][0] + dec, decoded[-1][1])
117 decoded.append((dec, charset))
119 return decoded
248 cannot be decoded with that charset. If s is a Unicode string, then