diff options
| author | Georg Brandl <georg@python.org> | 2014-11-06 13:37:49 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2014-11-06 13:37:49 (GMT) |
| commit | 5a15508f978c1d6fd3f87b26c8c3605222b38f1a (patch) | |
| tree | 4637ae8d39ae89af0af42c9eb26198e5355a2de1 /Lib/test/test_codecmaps_tw.py | |
| parent | abd1c97bd26d9123ff73f49894b486ed263f1f57 (diff) | |
| download | cpython-5a15508f978c1d6fd3f87b26c8c3605222b38f1a.zip cpython-5a15508f978c1d6fd3f87b26c8c3605222b38f1a.tar.gz cpython-5a15508f978c1d6fd3f87b26c8c3605222b38f1a.tar.bz2 | |
#22650: test suite: load Unicode test data files from www.pythontest.net
Diffstat (limited to 'Lib/test/test_codecmaps_tw.py')
| -rw-r--r-- | Lib/test/test_codecmaps_tw.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/test_codecmaps_tw.py b/Lib/test/test_codecmaps_tw.py index 9bf8340..2ea44b5 100644 --- a/Lib/test/test_codecmaps_tw.py +++ b/Lib/test/test_codecmaps_tw.py @@ -10,14 +10,12 @@ import unittest class TestBIG5Map(multibytecodec_support.TestBase_Mapping, unittest.TestCase): encoding = 'big5' - mapfileurl = 'http://www.unicode.org/Public/MAPPINGS/OBSOLETE/' \ - 'EASTASIA/OTHER/BIG5.TXT' + mapfileurl = 'http://www.pythontest.net/unicode/BIG5.TXT' class TestCP950Map(multibytecodec_support.TestBase_Mapping, unittest.TestCase): encoding = 'cp950' - mapfileurl = 'http://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/' \ - 'WINDOWS/CP950.TXT' + mapfileurl = 'http://www.pythontest.net/unicode/CP950.TXT' pass_enctest = [ (b'\xa2\xcc', '\u5341'), (b'\xa2\xce', '\u5345'), |
