summaryrefslogtreecommitdiffstats
path: root/Lib/test/cjkencodings_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Make all the multibyte codec tests pass.Guido van Rossum2007-05-171-990/+990
| | | | | | | | Changes to io.py, necessary to make this work: - Redid io.StringIO as a TextIOWrapper on top of a BytesIO instance. - Got rid of _MemoryIOMixin, folding it into BytesIO instead. - The read() functions that take -1 to mean "eveything" now also take None. - Added readline() support to BufferedIOBase. :-(
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-181-0/+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.
* Add CJK codecs support as discussed on python-dev. (SF #873597)Hye-Shik Chang2004-01-171-0/+1001
Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!