mirror of https://github.com/python/cpython
#13406: correct the error message in check_warnings too.
This commit is contained in:
parent
11060a4a48
commit
345379a7f8
|
@ -1030,7 +1030,7 @@ class UnicodeInternalTest(unittest.TestCase):
|
||||||
for internal in not_ok:
|
for internal in not_ok:
|
||||||
if sys.byteorder == "little":
|
if sys.byteorder == "little":
|
||||||
internal = bytes(reversed(internal))
|
internal = bytes(reversed(internal))
|
||||||
with support.check_warnings(('unicode_internal codecs has been '
|
with support.check_warnings(('unicode_internal codec has been '
|
||||||
'deprecated', DeprecationWarning)):
|
'deprecated', DeprecationWarning)):
|
||||||
self.assertRaises(UnicodeDecodeError, internal.decode,
|
self.assertRaises(UnicodeDecodeError, internal.decode,
|
||||||
"unicode_internal")
|
"unicode_internal")
|
||||||
|
@ -1038,7 +1038,7 @@ class UnicodeInternalTest(unittest.TestCase):
|
||||||
@unittest.skipUnless(SIZEOF_WCHAR_T == 4, 'specific to 32-bit wchar_t')
|
@unittest.skipUnless(SIZEOF_WCHAR_T == 4, 'specific to 32-bit wchar_t')
|
||||||
def test_decode_error_attributes(self):
|
def test_decode_error_attributes(self):
|
||||||
try:
|
try:
|
||||||
with support.check_warnings(('unicode_internal codecs has been '
|
with support.check_warnings(('unicode_internal codec has been '
|
||||||
'deprecated', DeprecationWarning)):
|
'deprecated', DeprecationWarning)):
|
||||||
b"\x00\x00\x00\x00\x00\x11\x11\x00".decode("unicode_internal")
|
b"\x00\x00\x00\x00\x00\x11\x11\x00".decode("unicode_internal")
|
||||||
except UnicodeDecodeError as ex:
|
except UnicodeDecodeError as ex:
|
||||||
|
@ -1053,7 +1053,7 @@ class UnicodeInternalTest(unittest.TestCase):
|
||||||
def test_decode_callback(self):
|
def test_decode_callback(self):
|
||||||
codecs.register_error("UnicodeInternalTest", codecs.ignore_errors)
|
codecs.register_error("UnicodeInternalTest", codecs.ignore_errors)
|
||||||
decoder = codecs.getdecoder("unicode_internal")
|
decoder = codecs.getdecoder("unicode_internal")
|
||||||
with support.check_warnings(('unicode_internal codecs has been '
|
with support.check_warnings(('unicode_internal codec has been '
|
||||||
'deprecated', DeprecationWarning)):
|
'deprecated', DeprecationWarning)):
|
||||||
ab = "ab".encode("unicode_internal").decode()
|
ab = "ab".encode("unicode_internal").decode()
|
||||||
ignored = decoder(bytes("%s\x22\x22\x22\x22%s" % (ab[:4], ab[4:]),
|
ignored = decoder(bytes("%s\x22\x22\x22\x22%s" % (ab[:4], ab[4:]),
|
||||||
|
|
Loading…
Reference in New Issue