summaryrefslogtreecommitdiffstats
path: root/Python/codecs.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix gcc 3.3 warnings related to Py_UNICODE_WIDE.Hye-Shik Chang2003-12-291-2/+20
* Fixed SF bug #663074. The codec system was using global staticGustavo Niemeyer2003-03-191-84/+65
* Patch for bug reported in patch #686627: import race condition inMarc-André Lemburg2003-02-141-1/+1
* Properly compute array size even for --disable-unicode.Martin v. Löwis2002-11-211-1/+1
* Fix PEP 293 related problems with --disable-unicode buildsWalter Dörwald2002-11-211-0/+6
* Add encoding name in LookupError. Fixes #615013. Will backport to 2.2.Martin v. Löwis2002-09-261-2/+2
* Check string for NULL before using it to format the error message.Walter Dörwald2002-09-021-3/+6
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-021-0/+399
* Fix bug [ 549731 ] Unicode encoders appears to leak references.Mark Hammond2002-07-181-4/+10
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-3/+0
* Changing the CNRI copyright notice according to CNRI's instructions.Guido van Rossum2000-08-031-1/+1
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-3/+3
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-2/+2
* Include limits.h if we have it.Jack Jansen2000-07-031-0/+3
* Change the loop index in normalizestring() to size_t too, to avoid aGuido van Rossum2000-06-291-1/+1
* Trent Mick's Win64 changes: size_t vs. int or long; also some overflowGuido van Rossum2000-06-281-2/+7
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-05-091-9/+5
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-5/+16
* Marc-Andre Lemburg: Error reporting in the codec registry and lookupGuido van Rossum2000-03-311-12/+46
* Marc-Andre Lemburg:Guido van Rossum2000-03-241-8/+6
* On 17-Mar-2000, Marc-Andre Lemburg said:Barry Warsaw2000-03-201-2/+12
* Python Codec Registry and support functions, written by Marc-AndreGuido van Rossum2000-03-101-0/+382