summaryrefslogtreecommitdiffstats
path: root/Modules/cjkcodecs/_codecs_tw.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12016: Multibyte CJK decoders now resynchronize fasterVictor Stinner2011-07-071-2/+2
| | | | | | | They only ignore the first byte of an invalid byte sequence. For example, b'\xff\n'.decode('gb2312', 'replace') gives '\ufffd\n' instead of '\ufffd'.
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-70/+70
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
* - Modernize code to use Py_ssize_t more intensively.Hye-Shik Chang2006-03-041-1/+0
| | | | - Do some minor code clean-ups.
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-181-0/+133
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.