diff options
author | Guido van Rossum <guido@python.org> | 2007-07-23 18:06:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-23 18:06:59 (GMT) |
commit | 005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84 (patch) | |
tree | 38f58257bbb75ad8659eda99f833fbc0c89b3250 /Lib/test/test_codecmaps_tw.py | |
parent | 4ca947183154a7cfc7a6ccbb2e5c856a16a5dce3 (diff) | |
download | cpython-005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84.zip cpython-005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84.tar.gz cpython-005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84.tar.bz2 |
Tweaks to make the codecmaps tests pass again.
(To run these, you need to pass -uurlfetch to regrtest.py or runtests.sh.)
Diffstat (limited to 'Lib/test/test_codecmaps_tw.py')
-rw-r--r-- | Lib/test/test_codecmaps_tw.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_codecmaps_tw.py b/Lib/test/test_codecmaps_tw.py index 71402c4..4bd1966 100644 --- a/Lib/test/test_codecmaps_tw.py +++ b/Lib/test/test_codecmaps_tw.py @@ -20,8 +20,8 @@ class TestCP950Map(test_multibytecodec_support.TestBase_Mapping, mapfileurl = 'http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/' \ 'WINDOWS/CP950.TXT' pass_enctest = [ - ('\xa2\xcc', '\u5341'), - ('\xa2\xce', '\u5345'), + (b'\xa2\xcc', '\u5341'), + (b'\xa2\xce', '\u5345'), ] def test_main(): |