summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-10 19:02:40 (GMT)
committerJason R. Coombs <jaraco@jaraco.com>2013-11-10 19:02:40 (GMT)
commit72cd8b9eda9c66c4883bb43855e8107d29e6d7d0 (patch)
tree3fbdfe6e723223448b5e81c94e0311eba6f49f37 /Lib/test
parent6bdc498734e83afbfd8d80c2f70b5d3800d65223 (diff)
parenta49ccb205fa2f25bf3d09d8f99476942ec3d66fd (diff)
downloadcpython-72cd8b9eda9c66c4883bb43855e8107d29e6d7d0.zip
cpython-72cd8b9eda9c66c4883bb43855e8107d29e6d7d0.tar.gz
cpython-72cd8b9eda9c66c4883bb43855e8107d29e6d7d0.tar.bz2
Merge
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_unicode.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py
index c8fa7f3..727897e 100644
--- a/Lib/test/test_unicode.py
+++ b/Lib/test/test_unicode.py
@@ -1831,7 +1831,7 @@ class UnicodeTest(string_tests.CommonTest,
# 0-127
s = bytes(range(128))
for encoding in (
- 'cp037', 'cp1026',
+ 'cp037', 'cp1026', 'cp273',
'cp437', 'cp500', 'cp720', 'cp737', 'cp775', 'cp850',
'cp852', 'cp855', 'cp858', 'cp860', 'cp861', 'cp862',
'cp863', 'cp865', 'cp866',
@@ -1859,7 +1859,7 @@ class UnicodeTest(string_tests.CommonTest,
# 128-255
s = bytes(range(128, 256))
for encoding in (
- 'cp037', 'cp1026',
+ 'cp037', 'cp1026', 'cp273',
'cp437', 'cp500', 'cp720', 'cp737', 'cp775', 'cp850',
'cp852', 'cp855', 'cp858', 'cp860', 'cp861', 'cp862',
'cp863', 'cp865', 'cp866',