- b6f4240 Issue #10807: Remove base64, bz2, hex, quopri, rot13, uu and zlib codecs from by Victor Stinner · 14 years ago
- 7c23ea2 Don't use deprecated aliases. by Georg Brandl · 14 years ago
- 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
- e01de8f remove pointless coding cookies by Florent Xicluna · 14 years ago
- ff56250 Fix a typo in the alias target name for 'macintosh'. by Marc-André Lemburg · 14 years ago
- 23110e7 alias macintosh to mac_roman #843590 by Benjamin Peterson · 14 years ago
- 5a6214a Merged revisions 81499,81506 via svnmerge from by Benjamin Peterson · 14 years ago
- a92ad7e Merged revisions 81471-81472 via svnmerge from by Victor Stinner · 14 years ago
- 75ad1fc Merged revisions 78806 via svnmerge from by Benjamin Peterson · 15 years ago
- 5f4ec04 Fix a minor grammatical error. by Brett Cannon · 15 years ago
- 1309adb Merged revisions 76337 via svnmerge from by Philip Jenvey · 15 years ago
- d884086 Oops, really pass a bytes string to the ctypes function. by Amaury Forgeot d'Arc · 15 years ago
- 8b84ea0 Merged revisions 74000-74001 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
- 50d1f79 #1276: Add temporary encoding aliases for non-supported Mac CJK by Hye-Shik Chang · 16 years ago
- fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
- b2750b5 Move the codec decode type checks to bytes/bytearray.decode(). by Marc-André Lemburg · 16 years ago
- b981995 The bz2 codec isn't supported any more. I've also commented out several codecs which were removed in the past. by Christian Heimes · 17 years ago
- 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
- 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
- 87c0f1d Merged revisions 59041-59055 via svnmerge from by Guido van Rossum · 17 years ago
- 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
- 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
- 4902e69 More raise statement normalization. by Collin Winter · 17 years ago
- ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
- 19e6238 Fix stupid typo in Lib/encodings/utf_32.py which led to failing tests by Walter Dörwald · 17 years ago
- 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
- d77d699 Change a bunch of file encodings from Latin-1 to UTF-8. by Guido van Rossum · 17 years ago
- c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
- 42748a8 Rip out all codecs that can't work in a unicode/bytes world: by Walter Dörwald · 17 years ago
- ad5b9de Change normalize_encodings() to avoid using .translate() or depending on by Guido van Rossum · 17 years ago
- d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
- ea0ebd8 Make test_str.py pass. by Guido van Rossum · 17 years ago
- 0ac30f8 Enhance the punycode decoder so that it can decode unicode objects. by Walter Dörwald · 18 years ago
- a4c6128 Fix punycode codec and tests. by Walter Dörwald · 18 years ago
- 0e02abb Random modifications that slightly improve the chances of this not blowing up. by Guido van Rossum · 18 years ago
- 3699582 Fix trivial bug in idna encoding. by Guido van Rossum · 18 years ago
- 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 18 years ago
- ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
- 3abcb01 Apply SF patch #1698994: Add getstate() and setstate() by Walter Dörwald · 18 years ago
- cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
- cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
- 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 18 years ago
- b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- f1a69c1 Get rid of a bunch more has_key() uses. We *really* need a tool for this. by Neal Norwitz · 18 years ago
- 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
- 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 19 years ago
- 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 19 years ago
- 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 19 years ago
- 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 19 years ago
- fe4b34c Fix the encodings package codec search function to only search by Marc-André Lemburg · 19 years ago
- 412ed3b Patch #1177307: UTF-8-Sig codec. by Martin v. Löwis · 19 years ago
- 536cf99 Whitespace normalization. by Tim Peters · 19 years ago
- d9cf593 Cosmetic change: make all hex literals use upper case hex so that they by Marc-André Lemburg · 19 years ago
- 3c72ded Removed the decoding_map from the codecs where this is possible. by Marc-André Lemburg · 19 years ago
- 0f00ba8 Replace the old EBCDIC codecs with new ones using the decoding table. by Marc-André Lemburg · 19 years ago
- 7797be7 Alias iso8859_1 to latin_1 which is the same encoding, but has by Marc-André Lemburg · 19 years ago
- 75c9e83 Add a few more Mac OS encodings. The mapping tables for these are by Marc-André Lemburg · 19 years ago
- a1129f4 Replace the old charmap codecs with new ones generated from the current by Marc-André Lemburg · 19 years ago
- 007f8df Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specified by Walter Dörwald · 19 years ago
- 4ce69a5 No need to import exceptions, they are builtins by Neal Norwitz · 19 years ago
- 8b59514 Make IDNA return an empty string when the input is empty. Fixes #1163178. by Martin v. Löwis · 19 years ago
- 729c31f Reset internal buffers when seek() is called. This fixes SF bug #1156259. by Walter Dörwald · 20 years ago
- e1a0391 Fix wrong variable name. by Walter Dörwald · 20 years ago
- 9ab8818 Rearranged mappings to value sorting order. by Marc-André Lemburg · 20 years ago
- 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
- d1b7827 Whitespace normalization. by Tim Peters · 20 years ago
- c759f07 Added new codecs and aliases for ISO_8859-11, ISO_8859-16 and TIS-620. by Marc-André Lemburg · 20 years ago
- c0cbc86 Whitespace normalization. by Tim Peters · 20 years ago
- 17b6d28 New codec: [ 996067 ] hp-roman8 codec by Marc-André Lemburg · 20 years ago
- cd8a4cb Added new codec hp-roman8 submitted as patch [ 996067 ] hp-roman8 codec. by Marc-André Lemburg · 20 years ago
- 2bb146f Bring CJKCodecs 1.1 into trunk. This completely reorganizes source by Hye-Shik Chang · 20 years ago
- 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago
- 708b4da Convert input to a string object. Fixes #909230. Backported 2.3. by Martin v. Löwis · 21 years ago
- 5c5316f Add a new unicode codec: ptcp154 (Kazakh) by Hye-Shik Chang · 21 years ago
- 361d66d Fix wrong character mapping in koi8_u: SF bug #902501. by Marc-André Lemburg · 21 years ago
- c83dddf Let the default encodings search function lookup aliases before trying the codec import. This allows applications to install codecs which override (non-special-cased) builtin codecs. by Marc-André Lemburg · 21 years ago
- 5c94d33 Add some more code page aliases needed for completeness. by Marc-André Lemburg · 21 years ago
- b619e4b Fix a typo: s/iso_3022/iso2022/ by Hye-Shik Chang · 21 years ago
- 3e2a306 Add CJK codecs support as discussed on python-dev. (SF #873597) by Hye-Shik Chang · 21 years ago
- 0ad142a Revert previous change. MAL preferred the old version. by Raymond Hettinger · 21 years ago
- a455170 Simplifed the code. by Raymond Hettinger · 21 years ago
- 9edae34 Fix typo in the comments. by Raymond Hettinger · 21 years ago
- 9a80c5d Added codec for bz2 compression. by Raymond Hettinger · 21 years ago
- 0d8e16c Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3. by Martin v. Löwis · 21 years ago
- 5d6ceb4 more generic reference to python interpreter by Skip Montanaro · 21 years ago
- 2820125 Remove usage of re module from encodings package search function. by Marc-André Lemburg · 21 years ago
- 0eadaac Whitespace normalization. by Tim Peters · 22 years ago
- 2548c73 Implement IDNA (Internationalized Domain Names in Applications). by Martin v. Löwis · 22 years ago
- 7fb697b Revert Patch #670715: iconv support. by Martin v. Löwis · 22 years ago
- 6156a2d Handle iconv initialization erorrs by Neal Norwitz · 22 years ago
- 9789aef Patch #670715: Universal Unicode Codec for POSIX iconv. by Martin v. Löwis · 22 years ago
- 6578dc9 Whitespace normalization. by Tim Peters · 22 years ago
- d8407a7 Add new encoding for Ukrainian Cyrillic by Neal Norwitz · 22 years ago
- c8c6065 When looking for an alias, first look for the normalized name (which by Guido van Rossum · 22 years ago
- 8dc5ff2 Undo the removal. Guido mentioned that the encoding name is in active by Marc-André Lemburg · 22 years ago
- 68fc273 Remove unneeded alias. by Marc-André Lemburg · 22 years ago
- a40ea75 Fix doc-string. by Marc-André Lemburg · 22 years ago