mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Bring CJKCodecs 1.1 into trunk. This completely reorganizes source
and installed layouts to make maintenance simple and easy. And it also adds four new codecs; big5hkscs, euc-jis-2004, shift-jis-2004 and iso2022-jp-2004.
This commit is contained in:
parent
264c659197
commit
2bb146f2f4
109 changed files with 34331 additions and 40239 deletions
|
@ -3,7 +3,7 @@
|
|||
# test_codecencodings_jp.py
|
||||
# Codec encoding tests for Japanese encodings.
|
||||
#
|
||||
# $CJKCodecs: test_codecencodings_jp.py,v 1.2 2004/01/06 09:25:37 perky Exp $
|
||||
# $CJKCodecs: test_codecencodings_jp.py,v 1.3 2004/06/19 06:09:55 perky Exp $
|
||||
|
||||
from test import test_support
|
||||
from test import test_multibytecodec_support
|
||||
|
@ -64,16 +64,6 @@ class Test_EUC_JP_COMPAT(test_multibytecodec_support.TestBase,
|
|||
(u"\u203e", "strict", "\x7e"),
|
||||
)
|
||||
|
||||
class Test_EUC_JP_STRICT(test_multibytecodec_support.TestBase,
|
||||
unittest.TestCase):
|
||||
encoding = 'euc_jp_strict'
|
||||
tstring = test_multibytecodec_support.load_teststring('euc_jp')
|
||||
codectests = eucjp_commontests + (
|
||||
("\xa1\xc0\\", "strict", u"\\\\"),
|
||||
(u"\xa5", "strict", None),
|
||||
(u"\u203e", "strict", None),
|
||||
)
|
||||
|
||||
shiftjis_commonenctests = (
|
||||
("abc\x80\x80\x82\x84", "strict", None),
|
||||
("abc\xf8", "strict", None),
|
||||
|
@ -90,14 +80,6 @@ class Test_SJIS_COMPAT(test_multibytecodec_support.TestBase, unittest.TestCase):
|
|||
("\x81\x5f\x81\x61\x81\x7c", "strict", u"\uff3c\u2016\u2212"),
|
||||
)
|
||||
|
||||
class Test_SJIS_STRICT(test_multibytecodec_support.TestBase, unittest.TestCase):
|
||||
encoding = 'shift_jis_strict'
|
||||
tstring = test_multibytecodec_support.load_teststring('shift_jis')
|
||||
codectests = shiftjis_commonenctests + (
|
||||
("\\\x7e", "replace", u"\xa5\u203e"),
|
||||
("\x81\x5f\x81\x61\x81\x7c", "replace", u"\x5c\u2016\u2212"),
|
||||
)
|
||||
|
||||
class Test_SJISX0213(test_multibytecodec_support.TestBase, unittest.TestCase):
|
||||
encoding = 'shift_jisx0213'
|
||||
tstring = test_multibytecodec_support.load_teststring('shift_jisx0213')
|
||||
|
@ -123,9 +105,6 @@ def test_main():
|
|||
suite.addTest(unittest.makeSuite(Test_EUC_JISX0213))
|
||||
suite.addTest(unittest.makeSuite(Test_EUC_JP_COMPAT))
|
||||
suite.addTest(unittest.makeSuite(Test_SJIS_COMPAT))
|
||||
if test_multibytecodec_support.__cjkcodecs__:
|
||||
suite.addTest(unittest.makeSuite(Test_EUC_JP_STRICT))
|
||||
suite.addTest(unittest.makeSuite(Test_SJIS_STRICT))
|
||||
suite.addTest(unittest.makeSuite(Test_SJISX0213))
|
||||
test_support.run_suite(suite)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue