1. b1d867f Issue #27076: Doc, comment and test function name spelling fixes by Martin Panter · 8 years ago
  2. b2528c9 Issue #16473: Fix byte transform codec documentation; test quotetabs=True by Martin Panter · 9 years ago
  3. c7797dc Issue #19543: Emit deprecation warning for known non-text encodings. by Serhiy Storchaka · 9 years ago
  4. 5312a7f Avoid deprecation warnings. by Serhiy Storchaka · 10 years ago
  5. e0ed2d7 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  6. 73363e8 Issue #6213: Implement getstate() and setstate() methods of utf-8-sig and by Victor Stinner · 14 years ago
  7. f0757a2 #8016: add the CP858 codec (approved by Benjamin). (Also add CP720 to the tests, it was missing there.) by Georg Brandl · 14 years ago
  8. 54b40ee Fix my last commit (r81471) about codecs by Victor Stinner · 14 years ago
  9. 7df55da Issue #6268: More bugfixes about BOM, UTF-16 and UTF-32 by Victor Stinner · 14 years ago
  10. f4803aa set svn:eol-style on various files by Benjamin Peterson · 15 years ago
  11. fab8be2 #1757126: fix typo with the cyrillic_asian alias by Philip Jenvey · 15 years ago
  12. 6e3dbbd replace has_key with 'in' operator by Benjamin Peterson · 15 years ago
  13. de05599 replace callable() by Benjamin Peterson · 15 years ago
  14. 70dda76 #1616979: Add the cp720 (Arabic DOS) encoding. by Amaury Forgeot d'Arc · 15 years ago
  15. 082c9b0 Fixed bug #1915: Python compiles with --enable-unicode=no again. However several extension methods and modules do not work without unicode support. by Christian Heimes · 17 years ago
  16. 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 17 years ago
  17. 183744d Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode()) by Walter Dörwald · 17 years ago
  18. 4cdceac Fix #883466: don't allow Unicode as arguments to quopri and uu codecs. by Georg Brandl · 17 years ago
  19. 6e39080 Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. by Walter Dörwald · 17 years ago
  20. 4234827 Fix utf-8-sig incremental decoder, which didn't recognise a BOM when the by Walter Dörwald · 17 years ago
  21. fa6521b Make the __import__ call in encodings.__init__ absolute with a level 0 call. by Brett Cannon · 18 years ago
  22. 971a012 Update the encoding package's search function to use absolute imports when by Brett Cannon · 18 years ago
  23. 4ba9e5b Patch #1634778: add missing encoding aliases for iso8859_15 and iso8859_16. by Georg Brandl · 18 years ago
  24. 39b8b6a Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig')) by Walter Dörwald · 18 years ago
  25. 2c9838e Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders. by Georg Brandl · 18 years ago
  26. a92979a Bug #1446043: correctly raise a LookupError if an encoding name given by Georg Brandl · 18 years ago
  27. 391e5f4 importing types is not necessary if we use isinstance by Neal Norwitz · 18 years ago
  28. 961b91b Correction of patch #1455898: In the mbcs decoder, set final=False by Martin v. Löwis · 18 years ago
  29. 0eac118 Make import/lookup of mbcs fail on non-Windows systems. by Martin v. Löwis · 18 years ago
  30. d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 18 years ago
  31. c6f5b3a errors is an attribute in the incremental decoder not an argument. by Walter Dörwald · 18 years ago
  32. 6b6e2bb Fix passing errors to the encoder and decoder functions. by Walter Dörwald · 18 years ago
  33. c7d1445 Whitespace normalization. by Tim Peters · 18 years ago
  34. 3f76779 Patch #1359618: Speed-up charmap encoder. by Martin v. Löwis · 18 years ago
  35. 78a0be6 Add a BufferedIncrementalEncoder class that can be used for implementing by Walter Dörwald · 18 years ago
  36. a40cf31 Make error message less misleading for u"a..b".encode("idna"). by Walter Dörwald · 18 years ago
  37. 6493699 Make raise statements PEP 8 compatible. by Walter Dörwald · 18 years ago
  38. a8da934 Whitespace. by Walter Dörwald · 18 years ago
  39. e2ac4ab Patch #1443155: Add the incremental codecs support for CJK codecs. by Hye-Shik Chang · 18 years ago
  40. f8480a7 Instead of relative imports, use (implicitly) absolute ones. by Guido van Rossum · 19 years ago
  41. f99b816 Whitespace normalization. by Tim Peters · 19 years ago
  42. 13ed60b Fix typo. by Walter Dörwald · 19 years ago
  43. abb02e5 Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass by Walter Dörwald · 19 years ago
  44. 87de069 Use relative imports in a few places where I noticed the need. by Guido van Rossum · 19 years ago
  45. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 19 years ago
  46. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 19 years ago
  47. fe4b34c Fix the encodings package codec search function to only search by Marc-André Lemburg · 19 years ago
  48. 412ed3b Patch #1177307: UTF-8-Sig codec. by Martin v. Löwis · 19 years ago
  49. 536cf99 Whitespace normalization. by Tim Peters · 19 years ago
  50. d9cf593 Cosmetic change: make all hex literals use upper case hex so that they by Marc-André Lemburg · 19 years ago
  51. 3c72ded Removed the decoding_map from the codecs where this is possible. by Marc-André Lemburg · 19 years ago
  52. 0f00ba8 Replace the old EBCDIC codecs with new ones using the decoding table. by Marc-André Lemburg · 19 years ago
  53. 7797be7 Alias iso8859_1 to latin_1 which is the same encoding, but has by Marc-André Lemburg · 19 years ago
  54. 75c9e83 Add a few more Mac OS encodings. The mapping tables for these are by Marc-André Lemburg · 19 years ago
  55. a1129f4 Replace the old charmap codecs with new ones generated from the current by Marc-André Lemburg · 19 years ago
  56. 007f8df Bug #1245379: Add "unicode-1-1-utf-7" as an alias for "utf-7" as specified by Walter Dörwald · 19 years ago
  57. 4ce69a5 No need to import exceptions, they are builtins by Neal Norwitz · 19 years ago
  58. 8b59514 Make IDNA return an empty string when the input is empty. Fixes #1163178. by Martin v. Löwis · 19 years ago
  59. 729c31f Reset internal buffers when seek() is called. This fixes SF bug #1156259. by Walter Dörwald · 20 years ago
  60. e1a0391 Fix wrong variable name. by Walter Dörwald · 20 years ago
  61. 9ab8818 Rearranged mappings to value sorting order. by Marc-André Lemburg · 20 years ago
  62. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  63. d1b7827 Whitespace normalization. by Tim Peters · 20 years ago
  64. c759f07 Added new codecs and aliases for ISO_8859-11, ISO_8859-16 and TIS-620. by Marc-André Lemburg · 20 years ago
  65. c0cbc86 Whitespace normalization. by Tim Peters · 20 years ago
  66. 17b6d28 New codec: [ 996067 ] hp-roman8 codec by Marc-André Lemburg · 20 years ago
  67. cd8a4cb Added new codec hp-roman8 submitted as patch [ 996067 ] hp-roman8 codec. by Marc-André Lemburg · 20 years ago
  68. 2bb146f Bring CJKCodecs 1.1 into trunk. This completely reorganizes source by Hye-Shik Chang · 20 years ago
  69. 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago
  70. 708b4da Convert input to a string object. Fixes #909230. Backported 2.3. by Martin v. Löwis · 20 years ago
  71. 5c5316f Add a new unicode codec: ptcp154 (Kazakh) by Hye-Shik Chang · 20 years ago
  72. 361d66d Fix wrong character mapping in koi8_u: SF bug #902501. by Marc-André Lemburg · 21 years ago
  73. 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
  74. 5c94d33 Add some more code page aliases needed for completeness. by Marc-André Lemburg · 21 years ago
  75. b619e4b Fix a typo: s/iso_3022/iso2022/ by Hye-Shik Chang · 21 years ago
  76. 3e2a306 Add CJK codecs support as discussed on python-dev. (SF #873597) by Hye-Shik Chang · 21 years ago
  77. 0ad142a Revert previous change. MAL preferred the old version. by Raymond Hettinger · 21 years ago
  78. a455170 Simplifed the code. by Raymond Hettinger · 21 years ago
  79. 9edae34 Fix typo in the comments. by Raymond Hettinger · 21 years ago
  80. 9a80c5d Added codec for bz2 compression. by Raymond Hettinger · 21 years ago
  81. 0d8e16c Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3. by Martin v. Löwis · 21 years ago
  82. 5d6ceb4 more generic reference to python interpreter by Skip Montanaro · 21 years ago
  83. 2820125 Remove usage of re module from encodings package search function. by Marc-André Lemburg · 21 years ago
  84. 0eadaac Whitespace normalization. by Tim Peters · 21 years ago
  85. 2548c73 Implement IDNA (Internationalized Domain Names in Applications). by Martin v. Löwis · 21 years ago
  86. 7fb697b Revert Patch #670715: iconv support. by Martin v. Löwis · 21 years ago
  87. 6156a2d Handle iconv initialization erorrs by Neal Norwitz · 22 years ago
  88. 9789aef Patch #670715: Universal Unicode Codec for POSIX iconv. by Martin v. Löwis · 22 years ago
  89. 6578dc9 Whitespace normalization. by Tim Peters · 22 years ago
  90. d8407a7 Add new encoding for Ukrainian Cyrillic by Neal Norwitz · 22 years ago
  91. c8c6065 When looking for an alias, first look for the normalized name (which by Guido van Rossum · 22 years ago
  92. 8dc5ff2 Undo the removal. Guido mentioned that the encoding name is in active by Marc-André Lemburg · 22 years ago
  93. 68fc273 Remove unneeded alias. by Marc-André Lemburg · 22 years ago
  94. a40ea75 Fix doc-string. by Marc-André Lemburg · 22 years ago
  95. 9d158bb Adapt lookup names to new more general encoding name normalization scheme. by Marc-André Lemburg · 22 years ago
  96. 7012673 Extending the encoding name normalization to handle more non-alphanumeric by Marc-André Lemburg · 22 years ago
  97. 479f3d3 Oops, must convert hyphens to underscores in keys of aliases dict. by Guido van Rossum · 22 years ago
  98. b7a88e5 Add yet another alias for ASCII found in the field. Will backport to 2.2.2. by Guido van Rossum · 22 years ago
  99. 280488b Whitespace normalization. by Tim Peters · 22 years ago
  100. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago