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