Home | History | Annotate | Download | only in test

Lines Matching full:ouch

354             ["ascii", "g\xfcrk", 1, 2, "ouch"],
355 "'ascii' codec can't encode character '\\xfc' in position 1: ouch"
359 ["ascii", "g\xfcrk", 1, 4, "ouch"],
360 "'ascii' codec can't encode characters in position 1-3: ouch"
364 ["ascii", "\xfcx", 0, 1, "ouch"],
365 "'ascii' codec can't encode character '\\xfc' in position 0: ouch"
369 ["ascii", "\u0100x", 0, 1, "ouch"],
370 "'ascii' codec can't encode character '\\u0100' in position 0: ouch"
374 ["ascii", "\uffffx", 0, 1, "ouch"],
375 "'ascii' codec can't encode character '\\uffff' in position 0: ouch"
379 ["ascii", "\U00010000x", 0, 1, "ouch"],
380 "'ascii' codec can't encode character '\\U00010000' in position 0: ouch"
386 ["ascii", bytearray(b"g\xfcrk"), 1, 2, "ouch"],
387 "'ascii' codec can't decode byte 0xfc in position 1: ouch"
391 ["ascii", bytearray(b"g\xfcrk"), 1, 3, "ouch"],
392 "'ascii' codec can't decode bytes in position 1-2: ouch"
398 ["g\xfcrk", 1, 2, "ouch"],
399 "can't translate character '\\xfc' in position 1: ouch"
403 ["g\u0100rk", 1, 2, "ouch"],
404 "can't translate character '\\u0100' in position 1: ouch"
408 ["g\uffffrk", 1, 2, "ouch"],
409 "can't translate character '\\uffff' in position 1: ouch"
413 ["g\U00010000rk", 1, 2, "ouch"],
414 "can't translate character '\\U00010000' in position 1: ouch"
418 ["g\xfcrk", 1, 3, "ouch"],
419 "can't translate characters in position 1-2: ouch"
433 Exception("ouch")
440 UnicodeEncodeError("ascii", "\u3042", 0, 1, "ouch")
445 UnicodeDecodeError("ascii", bytearray(b"\xff"), 0, 1, "ouch")
450 UnicodeTranslateError("\u3042", 0, 1, "ouch")
464 UnicodeError("ouch")
469 UnicodeEncodeError("ascii", "a\u3042b", 1, 2, "ouch")),
474 UnicodeDecodeError("ascii", bytearray(b"a\xffb"), 1, 2, "ouch")),
479 UnicodeTranslateError("a\u3042b", 1, 2, "ouch")),
494 UnicodeError("ouch")
509 UnicodeEncodeError("ascii", "a\u3042b", 1, 2, "ouch")),
514 UnicodeDecodeError("ascii", bytearray(b"a\xffb"), 1, 2, "ouch")),
519 UnicodeTranslateError("a\u3042b", 1, 2, "ouch")),
534 UnicodeError("ouch")
540 UnicodeDecodeError("ascii", bytearray(b"\xff"), 0, 1, "ouch")
545 UnicodeTranslateError("\u3042", 0, 1, "ouch")
555 1, 1 + len(s), "ouch")
571 UnicodeError("ouch")
594 1, 1 + len(s), "ouch")),
600 1, 1 + len(s), "ouch")),
614 1, 2, "ouch")),
629 UnicodeError("ouch")
635 UnicodeDecodeError("ascii", bytearray(b"\xff"), 0, 1, "ouch")
640 UnicodeTranslateError("\u3042", 0, 1, "ouch")
660 1, 1 + len(s), "ouch")),
676 UnicodeError("ouch")
682 UnicodeTranslateError("\udc80", 0, 1, "ouch")
690 UnicodeEncodeError("ascii", s, 0, 1, "ouch")
694 UnicodeEncodeError("ascii", "a\udc80b", 1, 2, "ouch")),
700 UnicodeDecodeError("ascii", bytearray(b"a"), 0, 1, "ouch")
704 UnicodeDecodeError("ascii", bytearray(b"a\x80b"), 1, 2, "ouch")),
720 UnicodeError("ouch")
726 UnicodeTranslateError("\ud800", 0, 1, "ouch")
734 UnicodeEncodeError(enc, "a", 0, 1, "ouch")
739 UnicodeDecodeError(enc, "a".encode(enc), 0, 1, "ouch")
746 UnicodeEncodeError("ascii", s, 0, len(s), "ouch")
770 1, 1 + len(s), "ouch")),
776 1, 1 + n, "ouch")),