summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codecmaps_hk.py
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2008-02-08 17:10:20 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2008-02-08 17:10:20 (GMT)
commit01612e7dec9fcbd0733137aa90f0f21cfa49299f (patch)
treeaa75413d4f93ab4c6ddb0ea582172cabf7874633 /Lib/test/test_codecmaps_hk.py
parent27d339446af6fbd636c58090c5c7e15ec4551dd9 (diff)
downloadcpython-01612e7dec9fcbd0733137aa90f0f21cfa49299f.zip
cpython-01612e7dec9fcbd0733137aa90f0f21cfa49299f.tar.gz
cpython-01612e7dec9fcbd0733137aa90f0f21cfa49299f.tar.bz2
Update big5hkscs codec to conform to the HKSCS:2004 revision.
Diffstat (limited to 'Lib/test/test_codecmaps_hk.py')
-rw-r--r--Lib/test/test_codecmaps_hk.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_codecmaps_hk.py b/Lib/test/test_codecmaps_hk.py
index 1068d0b..362ab7f 100644
--- a/Lib/test/test_codecmaps_hk.py
+++ b/Lib/test/test_codecmaps_hk.py
@@ -11,10 +11,11 @@ import unittest
class TestBig5HKSCSMap(test_multibytecodec_support.TestBase_Mapping,
unittest.TestCase):
encoding = 'big5hkscs'
- mapfileurl = 'http://people.freebsd.org/~perky/i18n/BIG5HKSCS.TXT'
+ mapfileurl = 'http://people.freebsd.org/~perky/i18n/BIG5HKSCS-2004.TXT'
def test_main():
test_support.run_unittest(__name__)
if __name__ == "__main__":
+ test_support.use_resources = ['urlfetch']
test_main()