Home | History | Annotate | Download | only in email

Lines Matching refs:errors

19 from email.errors import HeaderParseError
71 An email.errors.HeaderParseError may be raised when certain decoding error
151 continuation_ws=' ', errors='strict'):
175 errors is passed through to the .append() call.
187 self.append(s, charset, errors)
237 def append(self, s, charset=None, errors='strict'):
255 Optional `errors' is passed as the third argument to any unicode() or
271 ustr = unicode(s, incodec, errors)
276 ustr.encode(outcodec, errors)
284 s = s.encode(outcodec, errors)