Home | History | Annotate | Download | only in email

Lines Matching refs:decoded

162     quoted-printable character "=" appended to them, so the decoded text will
239 # decoded string with string concatenation, which could be done much more
241 decoded = ''
246 decoded += eol
254 decoded += c
263 decoded += unquote(line[i:i+3])
267 decoded += c
271 decoded += eol
273 if encoded[-1] not in '\r\n' and decoded.endswith(eol):
274 decoded = decoded[:-1]
275 return decoded