diff options
author | Georg Brandl <georg@python.org> | 2010-05-24 21:29:07 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-24 21:29:07 +0000 |
commit | f0757a2937b4b341d828f68c1a857658fac01649 (patch) | |
tree | b5e36898eb126f17e14833d68aedf179db5ea053 /Lib/test/test_unicode.py | |
parent | dce6e1bd5a5b41b22be10ba119fb5b6d5546959a (diff) | |
download | cpython-git-f0757a2937b4b341d828f68c1a857658fac01649.tar.gz |
#8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the tests, it was missing there.)
Diffstat (limited to 'Lib/test/test_unicode.py')
-rw-r--r-- | Lib/test/test_unicode.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py index 368788f8f5..b9c062d2f2 100644 --- a/Lib/test/test_unicode.py +++ b/Lib/test/test_unicode.py @@ -700,8 +700,8 @@ class UnicodeTest( s = ''.join(map(chr, xrange(128))) for encoding in ( 'cp037', 'cp1026', - 'cp437', 'cp500', 'cp737', 'cp775', 'cp850', - 'cp852', 'cp855', 'cp860', 'cp861', 'cp862', + 'cp437', 'cp500', 'cp720', 'cp737', 'cp775', 'cp850', + 'cp852', 'cp855', 'cp858', 'cp860', 'cp861', 'cp862', 'cp863', 'cp865', 'cp866', 'iso8859_10', 'iso8859_13', 'iso8859_14', 'iso8859_15', 'iso8859_2', 'iso8859_3', 'iso8859_4', 'iso8859_5', 'iso8859_6', @@ -728,8 +728,8 @@ class UnicodeTest( s = ''.join(map(chr, xrange(128, 256))) for encoding in ( 'cp037', 'cp1026', - 'cp437', 'cp500', 'cp737', 'cp775', 'cp850', - 'cp852', 'cp855', 'cp860', 'cp861', 'cp862', + 'cp437', 'cp500', 'cp720', 'cp737', 'cp775', 'cp850', + 'cp852', 'cp855', 'cp858', 'cp860', 'cp861', 'cp862', 'cp863', 'cp865', 'cp866', 'iso8859_10', 'iso8859_13', 'iso8859_14', 'iso8859_15', 'iso8859_2', 'iso8859_4', 'iso8859_5', |