summaryrefslogtreecommitdiff
path: root/Modules/cjkcodecs/alg_jisx0201.h
Commit message (Collapse)AuthorAgeFilesLines
* CJK codecs: less magic macros, require explicit semicolonVictor Stinner2013-10-291-11/+24
|
* CJK codecs: add newlines for readabilityVictor Stinner2013-10-291-9/+28
|
* Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead ofVictor Stinner2013-04-111-6/+15
| | | | | | the legacy Py_UNICODE API. Add also a new _PyUnicodeWriter_WriteChar() function.
* Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-23/+23
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from 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-2/+0
| | | | - Do some minor code clean-ups.
* Bring CJKCodecs 1.1 into trunk. This completely reorganizes sourceHye-Shik Chang2004-07-181-25/+24
| | | | | | 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/+27
Several style fixes are suggested by Martin v. Loewis and Marc-Andre Lemburg. Thanks!