Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-103583: Add codecs and maps to _codecs_* module state (#103540) | Erlend E. Aasland | 2023-04-17 | 1 | -2/+2 |
| | |||||
* | CJK codecs: less magical macros, semicolon is now explicit | Victor Stinner | 2013-10-28 | 1 | -2/+2 |
| | |||||
* | CJK codecs: less magic macros, require explicit semicolon | Victor Stinner | 2013-10-28 | 1 | -8/+8 |
| | |||||
* | CJK codecs: add newlines for readability | Victor Stinner | 2013-10-28 | 1 | -5/+10 |
| | |||||
* | CJK codecs: use less magic and more readable macros, write explicit if | Victor Stinner | 2013-10-28 | 1 | -3/+3 |
| | |||||
* | Issue #18509: handle PyUnicode_Writer() error | Victor Stinner | 2013-10-28 | 1 | -4/+10 |
| | |||||
* | Issue #17693: CJK encoders now use the new Unicode API (PEP 393) | Victor Stinner | 2013-04-14 | 1 | -20/+24 |
| | |||||
* | Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of | Victor Stinner | 2013-04-11 | 1 | -15/+11 |
| | | | | | | the legacy Py_UNICODE API. Add also a new _PyUnicodeWriter_WriteChar() function. | ||||
* | Issue #12016: Multibyte CJK decoders now resynchronize faster | Victor Stinner | 2011-07-07 | 1 | -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 from | Antoine Pitrou | 2010-05-09 | 1 | -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 Chang | 2006-03-04 | 1 | -1/+0 |
| | | | | - Do some minor code clean-ups. | ||||
* | Bring CJKCodecs 1.1 into trunk. This completely reorganizes source | Hye-Shik Chang | 2004-07-18 | 1 | -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. |