summaryrefslogtreecommitdiff
path: root/Python/codecs.c
Commit message (Expand)AuthorAgeFilesLines
* #16336: merge with 3.2.Ezio Melotti2012-11-031-4/+4
|\
| * #16336: fix input checking in the surrogatepass error handler. Patch by Serh...Ezio Melotti2012-11-031-4/+4
* | merge with 3.2Philip Jenvey2012-10-261-3/+4
|\ \ | |/
| * bounds check for bad data (thanks amaury)Philip Jenvey2012-10-261-3/+4
* | Check newly created consistency using _PyUnicode_CheckConsistency(str, 1)Victor Stinner2012-04-271-4/+6
* | Issue #13722: Avoid silencing ImportErrors when initializing the codecs regis...Antoine Pitrou2012-01-181-9/+0
|\ \ | |/
| * Issue #13722: Avoid silencing ImportErrors when initializing the codecs regis...Antoine Pitrou2012-01-181-9/+0
* | PyCodec_IgnoreErrors() avoids the deprecated "u#" formatVictor Stinner2011-12-011-2/+1
* | Avoid the Py_UNICODE type in codecs.cVictor Stinner2011-11-041-4/+11
* | PyCodec_XMLCharRefReplaceError(): Remove unused variableVictor Stinner2011-11-041-2/+2
* | Fix C89 incompatibility.Martin v. Löwis2011-11-041-1/+1
* | Port error handlers from Py_UNICODE indexing to code point indexing.Martin v. Löwis2011-11-041-77/+46
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-2/+2
* | Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner2011-10-141-12/+12
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-2/+4
* | PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build resultVictor Stinner2011-10-021-2/+3
* | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-291-1/+1
* | Implement PEP 393.Martin v. Löwis2011-09-281-24/+20
|/
* Issue #1813: Fix codec lookup under Turkish locales.Antoine Pitrou2011-07-241-1/+1
* Merged revisions 84655 via svnmerge fromAntoine Pitrou2010-09-091-6/+20
* Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-522/+522
* Merged revisions 75797 via svnmerge fromGeorg Brandl2009-10-271-5/+17
* Rename utf8b error handler to surrogateescape.Martin v. Löwis2009-05-101-6/+6
* Rename the surrogates error handler to surrogatepass.Martin v. Löwis2009-05-101-6/+6
* Issue #5915: Implement PEP 383, Non-decodable Bytes inMartin v. Löwis2009-05-051-0/+89
* Make PyCodec_SurrogateErrors static.Martin v. Löwis2009-05-021-1/+4
* Issue #3672: Reject surrogates in utf-8 codec; add surrogates errorMartin v. Löwis2009-05-021-0/+92
* Issue 3723: Fixed initialization of subinterpretersChristian Heimes2008-10-301-0/+1
* Move the codec decode type checks to bytes/bytearray.decode().Marc-André Lemburg2008-06-061-20/+25
* Renamed PyString to PyBytesChristian Heimes2008-05-261-2/+2
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-2/+2
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-25/+37
* This is the uncontroversial half of patch 1263 by Thomas Lee:Guido van Rossum2007-10-191-8/+12
* Handle errorNeal Norwitz2007-08-111-1/+4
* Revert 55876. Use PyUnicode_AsEncodedString instead.Martin v. Löwis2007-06-121-17/+0
* Short-cut lookup of utf-8 codec, to make import workMartin v. Löwis2007-06-111-0/+17
* Change PyErr_Format() to generate a unicode string (by usingWalter Dörwald2007-05-251-12/+7
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-6/+0
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+6
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-103/+62
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-0/+50
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-3/+2
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-14/+14
* Fix a few more ref leaks. Backport candidateNeal Norwitz2005-11-241-3/+3
* Fix a couple of signed/unsigned comparison warningsNeal Norwitz2004-07-081-1/+1
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-5/+5