From 766e300eaaf8b8ca06a1e98e94fa1c5d1a33eba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 14 Sep 2002 09:10:04 +0000 Subject: Use integer above sys.maxunicode for range test. Fixes #608884. 2.2.2 candidate. --- Lib/test/test_unicode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 7f70412..a57d6f4 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -461,13 +461,13 @@ except KeyError: else: verify(value == u'abc, def') -for ordinal in (-100, 0x20000): +for ordinal in (-100, 0x200000): try: u"%c" % ordinal except ValueError: pass else: - print '*** formatting u"%%c" % %i should give a ValueError' % ordinal + print '*** formatting u"%%c" %% %i should give a ValueError' % ordinal # formatting jobs delegated from the string implementation: verify('...%(foo)s...' % {'foo':u"abc"} == u'...abc...') -- cgit v0.12