From: Andrew M. Kuchling Date: Wed, 20 Dec 2000 00:55:46 +0000 (+0000) Subject: Change expected message for ValueError, fixing bug #126400 X-Git-Tag: v2.1a1~511 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c867f74a102a8df376ff55ca4dd9dc9055d16141;p=python Change expected message for ValueError, fixing bug #126400 --- diff --git a/Lib/test/test_format.py b/Lib/test/test_format.py index 4778a8bc0b..f11eb54f76 100644 --- a/Lib/test/test_format.py +++ b/Lib/test/test_format.py @@ -197,5 +197,5 @@ def test_exc(formatstr, args, exception, excmsg): test_exc('abc %a', 1, ValueError, "unsupported format character 'a' (0x61) at index 5") test_exc(u'abc %\u3000', 1, ValueError, - "unsupported format character '\000' (0x3000) at index 5") + "unsupported format character '?' (0x3000) at index 5")