Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Issue #23215: Multibyte codecs with custom error handlers that ignores errors | Serhiy Storchaka | 2015-02-20 | 1 | -8/+11 | |
| | | | | | | | | | | consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo. | |||||
* | | Fixed few compiler warnings. | Serhiy Storchaka | 2015-02-16 | 1 | -4/+3 | |
| | | ||||||
* | | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 4 | -5/+5 | |
|\ \ | |/ | ||||||
| * | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 4 | -5/+5 | |
| | | ||||||
* | | Removed redundant casts to `char *`. | Serhiy Storchaka | 2014-09-28 | 2 | -3/+3 | |
| | | | | | | | | Corresponding functions now accept `const char *` (issue #1772673). | |||||
* | | Issue #20152: Convert _multibytecodecs to Argument Clinic. | Brett Cannon | 2014-08-22 | 2 | -142/+492 | |
|/ | ||||||
* | Issue #19515: Remove identifiers duplicated in the same file. | Victor Stinner | 2013-11-12 | 1 | -2/+2 | |
| | | | | Patch written by Andrei Dorian Duma. | |||||
* | CJK codecs: less magical macros, semicolon is now explicit | Victor Stinner | 2013-10-28 | 8 | -104/+118 | |
| | ||||||
* | CJK codecs: less magic macros, require explicit semicolon | Victor Stinner | 2013-10-28 | 10 | -191/+234 | |
| | ||||||
* | CJK codecs: add newlines for readability | Victor Stinner | 2013-10-28 | 7 | -91/+188 | |
| | ||||||
* | CJK codecs: use less magic and more readable macros, write explicit if | Victor Stinner | 2013-10-28 | 7 | -34/+32 | |
| | ||||||
* | CJK codecs: remove unused TRYMAP_ENC_MPLANE macro | Victor Stinner | 2013-10-28 | 1 | -10/+0 | |
| | ||||||
* | Issue #18509: handle PyUnicode_Writer() error | Victor Stinner | 2013-10-28 | 7 | -84/+102 | |
| | ||||||
* | Issue #1772673: The type of `char*` arguments now changed to `const char*`. | Serhiy Storchaka | 2013-10-19 | 1 | -1/+1 | |
| | ||||||
* | Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to | Victor Stinner | 2013-07-16 | 3 | -2/+5 | |
| | | | | notify exceptions raised by the _PyUnicodeWriter API | |||||
* | Issue #18408: Fix CJK decoders, raise MemoryError on memory allocation failure | Victor Stinner | 2013-07-15 | 1 | -1/+3 | |
| | ||||||
* | fix indentation | Victor Stinner | 2013-07-08 | 1 | -13/+13 | |
| | ||||||
* | Close #17694: Add minimum length to _PyUnicodeWriter | Victor Stinner | 2013-04-17 | 1 | -4/+5 | |
| | | | | | | | | | | | | * Add also min_char attribute to _PyUnicodeWriter structure (currently unused) * _PyUnicodeWriter_Init() has no more argument (except the writer itself): min_length and overallocate must be set explicitly * In error handlers, only enable overallocation if the replacement string is longer than 1 character * CJK decoders don't use overallocation anymore * Set min_length, instead of preallocating memory using _PyUnicodeWriter_Prepare(), in many decoders * _PyUnicode_DecodeUnicodeInternal() checks for integer overflow | |||||
* | Issue #17693: Fix memory/reference leaks | Victor Stinner | 2013-04-14 | 1 | -5/+3 | |
| | ||||||
* | Issue #17693: CJK encoders now use the new Unicode API (PEP 393) | Victor Stinner | 2013-04-14 | 9 | -418/+430 | |
| | ||||||
* | Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of | Victor Stinner | 2013-04-11 | 13 | -440/+384 | |
| | | | | | | the legacy Py_UNICODE API. Add also a new _PyUnicodeWriter_WriteChar() function. | |||||
* | merge 3.3 (#16585) | Benjamin Peterson | 2012-12-02 | 1 | -2/+6 | |
|\ | ||||||
| * | support encoding error handlers that return bytes (closes #16585) | Benjamin Peterson | 2012-12-02 | 1 | -2/+6 | |
| | | ||||||
* | | merge 3.3 | Benjamin Peterson | 2012-12-02 | 1 | -3/+3 | |
|\ \ | |/ | ||||||
| * | unicode -> str | Benjamin Peterson | 2012-12-02 | 1 | -3/+3 | |
| | | ||||||
* | | Issue #16330: Fix compilation on Windows | Victor Stinner | 2012-10-30 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #16330: Use surrogate-related macros | Victor Stinner | 2012-10-30 | 1 | -6/+5 | |
|/ | | | | Patch written by Serhiy Storchaka. | |||||
* | Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) | Victor Stinner | 2011-12-01 | 1 | -2/+2 | |
| | | | | Create an empty string with the new Unicode API. | |||||
* | MultibyteCodec_Decode() catchs PyUnicode_AS_UNICODE() failures | Victor Stinner | 2011-12-01 | 1 | -0/+2 | |
| | ||||||
* | CJK codecs checks for conversion to Py_UNICODE* failures | Victor Stinner | 2011-11-21 | 1 | -3/+10 | |
| | ||||||
* | MultibyteCodec_Encode() checks if PyUnicode_AS_UNICODE() failed | Victor Stinner | 2011-11-21 | 1 | -2/+5 | |
| | ||||||
* | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -2/+2 | |
| | ||||||
* | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -2/+5 | |
| | | | | Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing. | |||||
* | Issue #12016: Multibyte CJK decoders now resynchronize faster | Victor Stinner | 2011-07-07 | 5 | -36/+36 | |
| | | | | | | | 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'. | |||||
* | (Merge 3.2) Issue #12016: Reindent decoders of HK and JP codecs | Victor Stinner | 2011-06-03 | 2 | -51/+52 | |
|\ | ||||||
| * | Issue #12016: Reindent decoders of HK and JP codecs | Victor Stinner | 2011-06-03 | 2 | -51/+52 | |
| | | ||||||
* | | Close #12171: IncrementalEncoder.reset() of CJK codecs (multibytecodec) calls | Victor Stinner | 2011-05-30 | 1 | -4/+10 | |
| | | | | | | | | encreset() instead of decreset(). | |||||
* | | (Merge 3.2) Issue #12100: Don't reset incremental encoders of CJK codecs at | Victor Stinner | 2011-05-24 | 1 | -4/+4 | |
|\ \ | |/ | | | | | | | each call to their encode() method anymore, but continue to call the reset() method if the final argument is True. | |||||
| * | Issue #12100: Don't reset incremental encoders of CJK codecs at each call to | Victor Stinner | 2011-05-24 | 1 | -4/+4 | |
| | | | | | | | | | | their encode() method anymore, but continue to call the reset() method if the final argument is True. | |||||
| * | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 11 | -4071/+4071 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. ........ ................ | |||||
* | | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 2 | -1/+2 | |
| | | ||||||
* | | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 11 | -4071/+4071 | |
|/ | | | | | | | | | | 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. ........ | |||||
* | add a replacement API for PyCObject, PyCapsule #5630 | Benjamin Peterson | 2009-05-05 | 3 | -7/+12 | |
| | | | | | | All stdlib modules with C-APIs now use this. Patch by Larry Hastings | |||||
* | Issue #5640: Fix _multibytecodec so that CJK codecs don't repeat | Hye-Shik Chang | 2009-04-02 | 1 | -1/+1 | |
| | | | | | error replacement returned by codec error callbacks twice in IncrementalEncoder and StreamWriter. | |||||
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -5/+5 | |
| | | | | | type of tp_compare in a separate commit, for ease of reversion should things go wrong. | |||||
* | Followup of #4874: also fix multibytecodec.c | Antoine Pitrou | 2009-01-22 | 1 | -2/+2 | |
| | ||||||
* | merge from trunk | Benjamin Peterson | 2008-10-11 | 1 | -1/+1 | |
| | ||||||
* | Issue #3575: Incremental decoder's decode function now takes bytearray | Hirokazu Yamamoto | 2008-08-17 | 1 | -2/+7 | |
| | | | | by using 's*' instead of 't#' | |||||
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -3/+11 | |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65654 | martin.v.loewis | 2008-08-12 16:49:50 +0200 (Tue, 12 Aug 2008) | 6 lines Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by denying s# to parse objects that have a releasebuffer procedure, and introducing s*. More module might need to get converted to use s*. ........ | |||||
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 2 | -3/+3 | |
| | | | | | | | | | PyUnicode_AsStringAndSize -> _PyUnicode_AsStringAndSize to mark them for interpreter internal use only. We'll have to rework these APIs or create new ones for the purpose of accessing the UTF-8 representation of Unicode objects for 3.1. |