summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codecencodings_cn.py
Commit message (Collapse)AuthorAgeFilesLines
* Standardize on test.test_support.run_unittest() (as opposed to a mix of ↵Collin Winter2007-04-251-5/+1
| | | | run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule().
* Fix a few bugs on cjkcodecs found by Oren Tirosh:Hye-Shik Chang2006-09-051-0/+2
| | | | | | | | - gbk and gb18030 codec now handle U+30FB KATAKANA MIDDLE DOT correctly. - iso2022_jp_2 codec now encodes into G0 for KS X 1001, GB2312 codepoints to conform the standard. - iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 2013:2 codepoints now.
* Remove $CJKCodecs$ RCS tags. The CJKCodecs isn't maintained outsideHye-Shik Chang2006-04-221-1/+0
| | | | anymore.
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-2/+2
|
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-181-3/+3
| | | | | | 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.
* Whitespace normalization.Tim Peters2004-01-181-3/+2
|
* Add CJK codecs support as discussed on python-dev. (SF #873597)Hye-Shik Chang2004-01-171-0/+61
Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!