diff options
| author | Guido van Rossum <guido@python.org> | 2007-07-23 18:06:59 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2007-07-23 18:06:59 +0000 |
| commit | 005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84 (patch) | |
| tree | 38f58257bbb75ad8659eda99f833fbc0c89b3250 /Lib/test/test_codecmaps_kr.py | |
| parent | 4ca947183154a7cfc7a6ccbb2e5c856a16a5dce3 (diff) | |
| download | cpython-git-005ebb1f7c40bdacd25fba8cae232ad2fb6c4c84.tar.gz | |
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_kr.py')
| -rw-r--r-- | Lib/test/test_codecmaps_kr.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_codecmaps_kr.py b/Lib/test/test_codecmaps_kr.py index 3f06187711..4a97611d7a 100644 --- a/Lib/test/test_codecmaps_kr.py +++ b/Lib/test/test_codecmaps_kr.py @@ -30,8 +30,8 @@ class TestJOHABMap(test_multibytecodec_support.TestBase_Mapping, # but, in early 90s that is the only era used johab widely, # the most softwares implements it as REVERSE SOLIDUS. # So, we ignore the standard here. - pass_enctest = [('\\', '\u20a9')] - pass_dectest = [('\\', '\u20a9')] + pass_enctest = [(b'\\', '\u20a9')] + pass_dectest = [(b'\\', '\u20a9')] def test_main(): test_support.run_unittest(__name__) |
