summaryrefslogtreecommitdiff
path: root/Modules/_codecsmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #8930: fix some C code indentationAntoine Pitrou2010-06-091-68/+68
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-340/+340
* fix escape_encode to return the correct consumed sizePhilip Jenvey2010-04-051-4/+5
* Issue 3739: The unicode-internal encoder now reports the number of *characters*Walter Dörwald2009-05-061-1/+1
* #5496: fix docstring of lookup().Georg Brandl2009-03-151-1/+1
* Docstring typo.Andrew M. Kuchling2008-10-031-1/+1
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-149/+118
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-11/+11
* Renamed PyString to PyBytesChristian Heimes2008-05-261-11/+11
* The incremental decoder for utf-7 must preserve its state between calls.Amaury Forgeot d'Arc2007-11-201-6/+13
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-171-0/+204
* Document that codecs.lookup() returns a CodecInfo object.Walter Dörwald2007-07-191-4/+5
* Klocwork made another run and found a bunch more problems.Neal Norwitz2006-08-121-1/+2
* Correction of patch #1455898: In the mbcs decoder, set final=FalseMartin v. Löwis2006-08-021-1/+1
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-5/+10
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-041-0/+10
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-51/+15
* Explain why 'consumed' is initialized.Martin v. Löwis2006-05-271-8/+4
* Fix more ssize_t issues.Martin v. Löwis2006-04-221-3/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-23/+48
* Whitespace cleanup.Walter Dörwald2005-11-021-27/+27
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-301-2/+2
* Build with --disable-unicode again. Fixes #1158607.Martin v. Löwis2005-03-081-0/+14
* SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now supportWalter Dörwald2004-09-071-24/+57
* Change some declarations from ``char *`` to ``const char *``. Also addedBrett Cannon2004-07-101-6/+8
* Add generic codecs.encode() and .decode() APIs that don't imposeMarc-André Lemburg2004-07-101-4/+72
* Fix for [ 543344 ] Interpreter crashes when recoding; suggestedMarc-André Lemburg2003-02-041-1/+3
* Add docstrings to register, lookup, register_errorWalter Dörwald2002-10-311-4/+36
* PEP 293 implemention (from SF patch http://www.python.org/sf/432401)Walter Dörwald2002-09-021-0/+28
* Patch #505705: Remove eval in pickle and cPickle.Martin v. Löwis2002-08-141-1/+45
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-5/+5
* Patch #477750: Use METH_ constants in Modules.Martin v. Löwis2002-01-171-29/+29
* Patch #435971: UTF-7 codec by Brian Quinlan.Marc-André Lemburg2001-09-201-0/+42
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-0/+4
* experimental UCS-4 support: don't assume that MS_WIN32 impliesFredrik Lundh2001-06-261-3/+3
* Fix for bug [ #433047 ] missing args to PyArg_ParseTupleMarc-André Lemburg2001-06-171-2/+2
* Added a true unicode_internal_encode function and fixed theMarc-André Lemburg2000-09-211-9/+43
* Changing the CNRI copyright notice according to CNRI's instructions.Guido van Rossum2000-08-031-1/+1
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* Modified the encode interfaces of all builtin codecs to acceptMarc-André Lemburg2000-07-051-50/+105
* Marc-Andre Lemburg:Guido van Rossum2000-03-281-0/+46
* Internal module _codecs -- Provides access to the codec registry andGuido van Rossum2000-03-101-0/+529