| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from | Victor Stinner | 2011-01-02 | 1 | -18/+18 |
|
|
* | Don't use deprecated aliases. | Georg Brandl | 2010-12-06 | 1 | -4/+4 |
|
|
* | #7475: add (un)transform method to bytes/bytearray and str, add back codecs t... | Georg Brandl | 2010-12-02 | 8 | -18/+550 |
|
|
* | remove pointless coding cookies | Florent Xicluna | 2010-08-30 | 1 | -1/+0 |
|
|
* | Fix a typo in the alias target name for 'macintosh'. | Marc-André Lemburg | 2010-08-21 | 1 | -1/+1 |
|
|
* | alias macintosh to mac_roman #843590 | Benjamin Peterson | 2010-08-21 | 1 | -0/+1 |
|
|
* | Merged revisions 81499,81506 via svnmerge from | Benjamin Peterson | 2010-06-27 | 2 | -0/+703 |
|
|
* | Merged revisions 81471-81472 via svnmerge from | Victor Stinner | 2010-05-22 | 2 | -14/+26 |
|
|
* | Merged revisions 78806 via svnmerge from | Benjamin Peterson | 2010-03-08 | 1 | -311/+309 |
|
|
* | Fix a minor grammatical error. | Brett Cannon | 2009-12-13 | 1 | -1/+1 |
|
|
* | Merged revisions 76337 via svnmerge from | Philip Jenvey | 2009-11-17 | 1 | -1/+1 |
|
|
* | Oops, really pass a bytes string to the ctypes function. | Amaury Forgeot d'Arc | 2009-07-13 | 1 | -27/+27 |
|
|
* | Merged revisions 74000-74001 via svnmerge from | Amaury Forgeot d'Arc | 2009-07-13 | 1 | -0/+311 |
|
|
* | #1276: Add temporary encoding aliases for non-supported Mac CJK | Hye-Shik Chang | 2008-08-23 | 1 | -0/+5 |
|
|
* | #2834: Change re module semantics, so that str and bytes mixing is forbidden, | Antoine Pitrou | 2008-08-19 | 1 | -5/+3 |
|
|
* | Move the codec decode type checks to bytes/bytearray.decode(). | Marc-André Lemburg | 2008-06-06 | 1 | -0/+2 |
|
|
* | The bz2 codec isn't supported any more. I've also commented out several codec... | Christian Heimes | 2007-12-02 | 2 | -120/+18 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 2 | -5/+5 |
|
|
* | Merged revisions 59056-59076 via svnmerge from | Christian Heimes | 2007-11-20 | 1 | -13/+10 |
|
|
* | Merged revisions 59041-59055 via svnmerge from | Guido van Rossum | 2007-11-19 | 1 | -5/+11 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 3 | -12/+12 |
|
|
* | Patch 1280, by Alexandre Vassalotti. | Guido van Rossum | 2007-10-19 | 1 | -0/+2 |
|
|
* | More raise statement normalization. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 3 | -11/+9 |
|
|
* | Fix stupid typo in Lib/encodings/utf_32.py which led to failing tests | Walter Dörwald | 2007-08-17 | 1 | -1/+1 |
|
|
* | Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and | Walter Dörwald | 2007-08-16 | 4 | -0/+228 |
|
|
* | Change a bunch of file encodings from Latin-1 to UTF-8. | Guido van Rossum | 2007-07-16 | 1 | -2/+2 |
|
|
* | Merged revisions 56125-56153 via svnmerge from | Guido van Rossum | 2007-07-03 | 1 | -2/+2 |
|
|
* | Rip out all codecs that can't work in a unicode/bytes world: | Walter Dörwald | 2007-06-12 | 7 | -618/+0 |
|
|
* | Change normalize_encodings() to avoid using .translate() or depending on | Guido van Rossum | 2007-06-07 | 1 | -14/+11 |
|
|
* | Merged revisions 55407-55513 via svnmerge from | Guido van Rossum | 2007-05-22 | 1 | -6/+6 |
|
|
* | Make test_str.py pass. | Guido van Rossum | 2007-05-15 | 1 | -1/+1 |
|
|
* | Enhance the punycode decoder so that it can decode | Walter Dörwald | 2007-05-11 | 2 | -22/+27 |
|
|
* | Fix punycode codec and tests. | Walter Dörwald | 2007-05-10 | 1 | -18/+15 |
|
|
* | Random modifications that slightly improve the chances of this not blowing up. | Guido van Rossum | 2007-05-09 | 1 | -11/+10 |
|
|
* | Fix trivial bug in idna encoding. | Guido van Rossum | 2007-05-09 | 1 | -1/+0 |
|
|
* | Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. | Guido van Rossum | 2007-05-03 | 1 | -1/+1 |
|
|
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 65 | -15638/+15638 |
|
|
* | Apply SF patch #1698994: Add getstate() and setstate() | Walter Dörwald | 2007-04-16 | 2 | -14/+83 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 1 | -2/+4 |
|
|
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -2/+1 |
|
|
* | Merged revisions 53538-53622 via svnmerge from | Thomas Wouters | 2007-02-05 | 1 | -0/+4 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -1/+1 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 4 | -12/+55 |
|
|
* | Get rid of a bunch more has_key() uses. We *really* need a tool for this. | Neal Norwitz | 2006-08-20 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 4 | -26/+23 |
|
|
* | Merge the rest of the trunk. | Thomas Wouters | 2006-06-08 | 45 | -11486/+180 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 25 | -449/+635 |
|
|
* | Merge part of the trunk changes into the p3yk branch. This merges from 43030 | Thomas Wouters | 2006-04-21 | 90 | -375/+1660 |
|
|
* | Checkpoint. 218 tests are okay; 53 are failing. Done so far: | Guido van Rossum | 2006-03-15 | 1 | -1/+2 |
|
|