Home | History | Annotate | Download | only in test

Lines Matching full:ouch

354             ["ascii", u"g\xfcrk", 1, 2, "ouch"],
355 "'ascii' codec can't encode character u'\\xfc' in position 1: ouch"
359 ["ascii", u"g\xfcrk", 1, 4, "ouch"],
360 "'ascii' codec can't encode characters in position 1-3: ouch"
364 ["ascii", u"\xfcx", 0, 1, "ouch"],
365 "'ascii' codec can't encode character u'\\xfc' in position 0: ouch"
369 ["ascii", u"\u0100x", 0, 1, "ouch"],
370 "'ascii' codec can't encode character u'\\u0100' in position 0: ouch"
374 ["ascii", u"\uffffx", 0, 1, "ouch"],
375 "'ascii' codec can't encode character u'\\uffff' in position 0: ouch"
380 ["ascii", u"\U00010000x", 0, 1, "ouch"],
381 "'ascii' codec can't encode character u'\\U00010000' in position 0: ouch"
387 ["ascii", "g\xfcrk", 1, 2, "ouch"],
388 "'ascii' codec can't decode byte 0xfc in position 1: ouch"
392 ["ascii", "g\xfcrk", 1, 3, "ouch"],
393 "'ascii' codec can't decode bytes in position 1-2: ouch"
399 [u"g\xfcrk", 1, 2, "ouch"],
400 "can't translate character u'\\xfc' in position 1: ouch"
404 [u"g\u0100rk", 1, 2, "ouch"],
405 "can't translate character u'\\u0100' in position 1: ouch"
409 [u"g\uffffrk", 1, 2, "ouch"],
410 "can't translate character u'\\uffff' in position 1: ouch"
415 [u"g\U00010000rk", 1, 2, "ouch"],
416 "can't translate character u'\\U00010000' in position 1: ouch"
420 [u"g\xfcrk", 1, 3, "ouch"],
421 "can't translate characters in position 1-2: ouch"
435 Exception("ouch")
442 UnicodeEncodeError("ascii", u"\u3042", 0, 1, "ouch")
447 UnicodeDecodeError("ascii", "\xff", 0, 1, "ouch")
452 UnicodeTranslateError(u"\u3042", 0, 1, "ouch")
466 UnicodeError("ouch")
471 UnicodeEncodeError("ascii", u"a\u3042b", 1, 2, "ouch")),
476 UnicodeDecodeError("ascii", "a\xffb", 1, 2, "ouch")),
481 UnicodeTranslateError(u"a\u3042b", 1, 2, "ouch")),
496 UnicodeError("ouch")
511 UnicodeEncodeError("ascii", u"a\u3042b", 1, 2, "ouch")),
516 UnicodeDecodeError("ascii", "a\xffb", 1, 2, "ouch")),
521 UnicodeTranslateError(u"a\u3042b", 1, 2, "ouch")),
536 UnicodeError("ouch")
542 UnicodeDecodeError("ascii", "\xff", 0, 1, "ouch")
547 UnicodeTranslateError(u"\u3042", 0, 1, "ouch")
558 1, 1 + len(s), "ouch")
574 UnicodeError("ouch")
580 UnicodeDecodeError("ascii", "\xff", 0, 1, "ouch")
585 UnicodeTranslateError(u"\u3042", 0, 1, "ouch")
614 1, 1 + len(s), "ouch")),