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