summaryrefslogtreecommitdiffstats
path: root/Lib/encodings
Commit message (Expand)AuthorAgeFilesLines
* The bz2 codec isn't supported any more. I've also commented out several codec...Christian Heimes2007-12-022-120/+18
* Rename buffer -> bytearray.Guido van Rossum2007-11-212-5/+5
* Merged revisions 59056-59076 via svnmerge fromChristian Heimes2007-11-201-13/+10
* Merged revisions 59041-59055 via svnmerge fromGuido van Rossum2007-11-191-5/+11
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-063-12/+12
* Patch 1280, by Alexandre Vassalotti.Guido van Rossum2007-10-191-0/+2
* More raise statement normalization.Collin Winter2007-08-301-1/+1
* Raise statement normalization in Lib/.Collin Winter2007-08-303-11/+9
* Fix stupid typo in Lib/encodings/utf_32.py which led to failing testsWalter Dörwald2007-08-171-1/+1
* Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald2007-08-164-0/+228
* Change a bunch of file encodings from Latin-1 to UTF-8.Guido van Rossum2007-07-161-2/+2
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-2/+2
* Rip out all codecs that can't work in a unicode/bytes world:Walter Dörwald2007-06-127-618/+0
* Change normalize_encodings() to avoid using .translate() or depending onGuido van Rossum2007-06-071-14/+11
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-6/+6
* Make test_str.py pass.Guido van Rossum2007-05-151-1/+1
* Enhance the punycode decoder so that it can decodeWalter Dörwald2007-05-112-22/+27
* Fix punycode codec and tests.Walter Dörwald2007-05-101-18/+15
* Random modifications that slightly improve the chances of this not blowing up.Guido van Rossum2007-05-091-11/+10
* Fix trivial bug in idna encoding.Guido van Rossum2007-05-091-1/+0
* Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'.Guido van Rossum2007-05-031-1/+1
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-0265-15638/+15638
* Apply SF patch #1698994: Add getstate() and setstate()Walter Dörwald2007-04-162-14/+83
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-2/+4
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-2/+1
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-0/+4
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-134-12/+55
* Get rid of a bunch more has_key() uses. We *really* need a tool for this.Neal Norwitz2006-08-201-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-114-26/+23
* Merge the rest of the trunk.Thomas Wouters2006-06-0845-11486/+180
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-2125-449/+635
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-2190-375/+1660
* Checkpoint. 218 tests are okay; 53 are failing. Done so far: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
* Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specifiedWalter Dörwald2005-10-091-0/+1
* No need to import exceptions, they are builtinsNeal Norwitz2005-09-011-3/+2
* Make IDNA return an empty string when the input is empty. Fixes #1163178.Martin v. Löwis2005-08-251-0/+6
* Reset internal buffers when seek() is called. This fixes SF bug #1156259.Walter Dörwald2005-03-141-0/+7
* Fix wrong variable name.Walter Dörwald2004-12-291-1/+1