Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 616734b6c80e222f16249e9a9ce52588a0b611a7 authored by Miss Islington (bot) on 25 July 2020, 23:40:48 UTC
bpo-39868: Add documentation for Assignment Expressions (walrus, PEP 572) (GH-18851)
Tip revision: 616734b
test_codecmaps_hk.py
#
# test_codecmaps_hk.py
#   Codec mapping tests for HongKong encodings
#

from test import multibytecodec_support
import unittest

class TestBig5HKSCSMap(multibytecodec_support.TestBase_Mapping,
                       unittest.TestCase):
    encoding = 'big5hkscs'
    mapfileurl = 'http://www.pythontest.net/unicode/BIG5HKSCS-2004.TXT'

if __name__ == "__main__":
    unittest.main()
back to top