Home | History | Annotate | Download | only in tests

Lines Matching refs:errors

15         for errors in ('strict', 'backslashreplace', 'surrogateescape',
17 with self.subTest(errors=errors):
19 encoding='cp437', errors=errors)
21 encoding='cp437', errors=errors)
33 'D?bug\tM?ss?ge' if errors == 'replace' else
34 'D?bug\tMssge' if errors == 'ignore' else
38 'F?tal\t?rr?r' if errors == 'replace' else
39 'F?tal\trrr' if errors == 'ignore' else