summaryrefslogtreecommitdiff
path: root/Lib/encodings
Commit message (Expand)AuthorAgeFilesLines
* Issue #6213: Implement getstate() and setstate() methods of utf-8-sig andVictor Stinner2010-07-282-3/+25
* #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the te...Georg Brandl2010-05-242-0/+703
* Fix my last commit (r81471) about codecsVictor Stinner2010-05-222-6/+6
* Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32Victor Stinner2010-05-222-14/+26
* set svn:eol-style on various filesBenjamin Peterson2010-03-081-311/+309
* #1757126: fix typo with the cyrillic_asian aliasPhilip Jenvey2009-11-171-1/+1
* replace has_key with 'in' operatorBenjamin Peterson2009-10-091-1/+1
* replace callable()Benjamin Peterson2009-10-091-6/+6
* #1616979: Add the cp720 (Arabic DOS) encoding.Amaury Forgeot d'Arc2009-07-131-0/+311
* Fixed bug #1915: Python compiles with --enable-unicode=no again. However seve...Christian Heimes2008-01-231-1/+2
* The incremental decoder for utf-7 must preserve its state between calls.Amaury Forgeot d'Arc2007-11-201-13/+10
* Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode())Walter Dörwald2007-11-191-5/+11
* Fix #883466: don't allow Unicode as arguments to quopri and uu codecs.Georg Brandl2007-09-032-4/+6
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-174-0/+228
* Fix utf-8-sig incremental decoder, which didn't recognise a BOM when theWalter Dörwald2007-04-121-7/+12
* Make the __import__ call in encodings.__init__ absolute with a level 0 call.Brett Cannon2007-02-161-4/+4
* Update the encoding package's search function to use absolute imports whenBrett Cannon2007-02-151-2/+4
* Patch #1634778: add missing encoding aliases for iso8859_15 andGeorg Brandl2007-01-271-0/+4
* Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig'))Walter Dörwald2006-11-231-1/+1
* Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders.Georg Brandl2006-10-292-8/+51
* Bug #1446043: correctly raise a LookupError if an encoding name givenGeorg Brandl2006-09-301-1/+1
* importing types is not necessary if we use isinstanceNeal Norwitz2006-08-251-2/+2
* Correction of patch #1455898: In the mbcs decoder, set final=FalseMartin v. Löwis2006-08-021-19/+11
* Make import/lookup of mbcs fail on non-Windows systems.Martin v. Löwis2006-06-151-4/+8
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-3/+4
* errors is an attribute in the incremental decoderWalter Dörwald2006-06-131-3/+3
* Fix passing errors to the encoder and decoder functions.Walter Dörwald2006-06-132-4/+4
* Whitespace normalization.Tim Peters2006-06-0445-45/+0
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-0445-11441/+180
* Add a BufferedIncrementalEncoder class that can be used for implementingWalter Dörwald2006-04-141-6/+72
* Make error message less misleading for u"a..b".encode("idna").Walter Dörwald2006-04-141-3/+3
* Make raise statements PEP 8 compatible.Walter Dörwald2006-04-141-11/+11
* Whitespace.Walter Dörwald2006-03-2724-0/+72
* Patch #1443155: Add the incremental codecs support for CJK codecs.Hye-Shik Chang2006-03-2624-432/+480
* Instead of relative imports, use (implicitly) absolute ones.Guido van Rossum2006-03-151-1/+1
* Whitespace normalization.Tim Peters2006-03-1548-50/+4
* Fix typo.Walter Dörwald2006-03-151-2/+2
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-1590-375/+1706
* Use relative imports in a few places where I noticed the need.Guido van Rossum2006-03-151-1/+2
* Avoid forward-declaring the methods array.Martin v. Löwis2006-03-101-1/+1
* Update Unicode database to Unicode 4.1.Martin v. Löwis2006-03-091-1/+2
* Fix the encodings package codec search function to only searchMarc-André Lemburg2006-02-191-1/+1
* Patch #1177307: UTF-8-Sig codec.Martin v. Löwis2006-01-081-0/+57
* Whitespace normalization.Tim Peters2005-12-2561-32998/+32953
* Cosmetic change: make all hex literals use upper case hex so that theyMarc-André Lemburg2005-10-2445-14236/+14281
* Removed the decoding_map from the codecs where this is possible.Marc-André Lemburg2005-10-2445-25663/+22734
* Replace the old EBCDIC codecs with new ones using the decoding table.Marc-André Lemburg2005-10-214-981/+3027
* Alias iso8859_1 to latin_1 which is the same encoding, but hasMarc-André Lemburg2005-10-211-0/+7
* Add a few more Mac OS encodings. The mapping tables for these areMarc-André Lemburg2005-10-215-0/+3414
* Replace the old charmap codecs with new ones generated from the currentMarc-André Lemburg2005-10-2149-5129/+29964