diff options
Diffstat (limited to 'Lib/test/test_unicode.py')
| -rw-r--r-- | Lib/test/test_unicode.py | 15 | 
1 files changed, 8 insertions, 7 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 8f842f3601..055f3a4bb6 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -90,7 +90,7 @@ class UnicodeTest(                  "\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef"                  "\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd"                  "\\xfe\\xff'") -            testrepr = repr(''.join(map(chr, xrange(256)))) +            testrepr = repr(''.join(map(chr, range(256))))              self.assertEqual(testrepr, latin1repr)              # Test repr works on wide unicode escapes without overflow.              self.assertEqual(repr("\U00010000" * 39 + "\uffff" * 4096), @@ -592,7 +592,7 @@ class UnicodeTest(          self.assertEqual('hello'.encode('latin-1'), b'hello')          # Roundtrip safety for BMP (just the first 1024 chars) -        for c in xrange(1024): +        for c in range(1024):              u = chr(c)              for encoding in ('utf-7', 'utf-8', 'utf-16', 'utf-16-le',                               'utf-16-be', 'raw_unicode_escape', @@ -600,13 +600,13 @@ class UnicodeTest(                  self.assertEqual(str(u.encode(encoding),encoding), u)          # Roundtrip safety for BMP (just the first 256 chars) -        for c in xrange(256): +        for c in range(256):              u = chr(c)              for encoding in ('latin-1',):                  self.assertEqual(str(u.encode(encoding),encoding), u)          # Roundtrip safety for BMP (just the first 128 chars) -        for c in xrange(128): +        for c in range(128):              u = chr(c)              for encoding in ('ascii',):                  self.assertEqual(str(u.encode(encoding),encoding), u) @@ -622,13 +622,14 @@ class UnicodeTest(          # This excludes surrogates: in the full range, there would be          # a surrogate pair (\udbff\udc00), which gets converted back          # to a non-BMP character (\U0010fc00) -        u = ''.join(map(chr, range(0,0xd800)+range(0xe000,0x10000))) +        u = u''.join(map(chr, list(range(0,0xd800)) + +                              list(range(0xe000,0x10000))))          for encoding in ('utf-8',):              self.assertEqual(str(u.encode(encoding),encoding), u)      def test_codecs_charmap(self):          # 0-127 -        s = bytes(xrange(128)) +        s = bytes(range(128))          for encoding in (              'cp037', 'cp1026',              'cp437', 'cp500', 'cp737', 'cp775', 'cp850', @@ -656,7 +657,7 @@ class UnicodeTest(              self.assertEqual(str(s, encoding).encode(encoding), s)          # 128-255 -        s = bytes(xrange(128, 256)) +        s = bytes(range(128, 256))          for encoding in (              'cp037', 'cp1026',              'cp437', 'cp500', 'cp737', 'cp775', 'cp850',  | 
