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