summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multibytecodec.py
Commit message (Collapse)AuthorAgeFilesLines
* Test using all CJK encodings for the testcases which don't requireHye-Shik Chang2006-07-061-6/+26
| | | | specific encodings.
* Add a testcase for r47086 which fixed a bug in codec_getstreamcodec().Hye-Shik Chang2006-07-061-1/+9
|
* Remove $CJKCodecs$ RCS tags. The CJKCodecs isn't maintained outsideHye-Shik Chang2006-04-221-1/+0
| | | | anymore.
* Allow long objects as a position value of error callbacks returned.Hye-Shik Chang2006-03-261-1/+7
|
* Patch #1443155: Add the incremental codecs support for CJK codecs.Hye-Shik Chang2006-03-261-18/+109
| | | | (reviewed by Walter Dörwald)
* Bug #1448490: Fix a bug that ISO-2022 codecs could not handleHye-Shik Chang2006-03-131-0/+7
| | | | SS2 (single-shift 2) escape sequences correctly.
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-181-1/+7
| | | | | | 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.
* Test not the standard utf-8 codec but gb18030 which is the most complexHye-Shik Chang2004-01-201-4/+4
| | | | codec in multibytecodec consumers.
* Whitespace normalization.Tim Peters2004-01-181-1/+0
|
* Add CJK codecs support as discussed on python-dev. (SF #873597)Hye-Shik Chang2004-01-171-0/+79
Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!