aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/codecs.c
Commit message (Expand)AuthorAge
* Issue #19619: Blacklist non-text codecs in method APINick Coghlan2013-11-22
* Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates.Serhiy Storchaka2013-11-19
* Close 19609: narrow scope of codec exc chainingNick Coghlan2013-11-15
* Close #17828: better handling of codec errorsNick Coghlan2013-11-13
* Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-19
* Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-13
* Issue #18408: normalizestring() now raises MemoryError on memory allocation f...Victor Stinner2013-07-12
* Issue #15422: get rid of PyCFunction_New macroAndrew Svetlov2012-12-25
* #16336: merge with 3.3.Ezio Melotti2012-11-03
|\
| * #16336: merge with 3.2.Ezio Melotti2012-11-03
| |\
| | * #16336: fix input checking in the surrogatepass error handler. Patch by Serh...Ezio Melotti2012-11-03
* | | Issue #16330: Use surrogate-related macrosVictor Stinner2012-10-30
|/ /
* | merge with 3.2Philip Jenvey2012-10-26
|\|
| * bounds check for bad data (thanks amaury)Philip Jenvey2012-10-26
* | Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner2012-04-27
* | Issue #13722: Avoid silencing ImportErrors when initializing the codecs regis...Antoine Pitrou2012-01-18
|\|
| * Issue #13722: Avoid silencing ImportErrors when initializing the codecs regis...Antoine Pitrou2012-01-18
* | PyCodec_IgnoreErrors() avoids the deprecated "u#" formatVictor Stinner2011-12-01
* | Avoid the Py_UNICODE type in codecs.cVictor Stinner2011-11-04
* | PyCodec_XMLCharRefReplaceError(): Remove unused variableVictor Stinner2011-11-04
* | Fix C89 incompatibility.Martin v. Löwis2011-11-04
* | Port error handlers from Py_UNICODE indexing to code point indexing.Martin v. Löwis2011-11-04
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-14
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-14
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-10
* | PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build resultVictor Stinner2011-10-02
* | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-29
* | Implement PEP 393.Martin v. Löwis2011-09-28
|/
* Issue #1813: Fix codec lookup under Turkish locales.Antoine Pitrou2011-07-24
* Issue #9804: ascii() now always represents unicode surrogate pairs asAntoine Pitrou2010-09-09
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-09
* Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,...Georg Brandl2009-10-27
* Rename utf8b error handler to surrogateescape.Martin v. Löwis2009-05-10
* Rename the surrogates error handler to surrogatepass.Martin v. Löwis2009-05-10
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-05
* Make PyCodec_SurrogateErrors static.Martin v. Löwis2009-05-02
* Issue #3672: Reject surrogates in utf-8 codec; add surrogates errorMartin v. Löwis2009-05-02
* Issue 3723: Fixed initialization of subinterpretersChristian Heimes2008-10-30
* Move the codec decode type checks to bytes/bytearray.decode().Marc-André Lemburg2008-06-06
* Renamed PyString to PyBytesChristian Heimes2008-05-26
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-26
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-03
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-19
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06
* This is the uncontroversial half of patch 1263 by Thomas Lee:Guido van Rossum2007-10-19
* Handle errorNeal Norwitz2007-08-11
* Revert 55876. Use PyUnicode_AsEncodedString instead.Martin v. Löwis2007-06-12
* Short-cut lookup of utf-8 codec, to make import workMartin v. Löwis2007-06-11
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-25
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-03