1. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  2. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  3. 41ca828 Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Codec.decode() docs. by Berker Peksag · 9 years ago
  4. 7e94e8e Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Codec.decode() docs. by Berker Peksag · 9 years ago
  5. 50ef0f4 Escaped backslashes in docstrings. by Serhiy Storchaka · 9 years ago
  6. 9f8a891 Escaped backslashes in docstrings. by Serhiy Storchaka · 9 years ago
  7. 07985ef Issue #22286: The "backslashreplace" error handlers now works with by Serhiy Storchaka · 9 years ago
  8. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  9. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  10. 582acb7 Merge issue 19548 changes from 3.4 by Nick Coghlan · 9 years ago
  11. b9fdb7a Issue 19548: update codecs module documentation by Nick Coghlan · 9 years ago
  12. 4d33ff6 Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter. by Serhiy Storchaka · 9 years ago
  13. de3ee5b Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter. by Serhiy Storchaka · 9 years ago
  14. 166ebc4 Issue #19676: Added the "namereplace" error handler. by Serhiy Storchaka · 10 years ago
  15. 521e586 Issue #22032: __qualname__ instead of __name__ is now always used to format by Serhiy Storchaka · 10 years ago
  16. dbe0982 Issue #8260: The read(), readline() and readlines() methods of by Serhiy Storchaka · 10 years ago
  17. c72e4e6 Issue #19619: Blacklist non-text codecs in method API by Nick Coghlan · 11 years ago
  18. c7b6c50 Describe 'surrogateescape' in the documentation. by Andrew Kuchling · 11 years ago
  19. 621302c Issue16097 Fix small typo in comment (patch by Wael Al Jishi) by Tim Golden · 12 years ago
  20. aaefac7 Issue #14874: Restore charmap decoding speed to pre-PEP 393 levels. by Antoine Pitrou · 12 years ago
  21. d8b509b #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). by Ezio Melotti · 13 years ago
  22. 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 · 13 years ago
  23. a92ad7e Merged revisions 81471-81472 via svnmerge from by Victor Stinner · 14 years ago
  24. 3fed087 Merged revisions 81459 via svnmerge from by Victor Stinner · 14 years ago
  25. f44c7e8 Make TextIOWrapper's seek/tell work properly with stateful decoders; by Ka-Ping Yee · 16 years ago
  26. e84b633 Document the expected convention for getstate() (as explained to me by Guido). by Ka-Ping Yee · 16 years ago
  27. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 16 years ago
  28. ca8a8d0 Make the BOM constants in codecs.py bytes. by Walter Dörwald · 17 years ago
  29. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  30. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  31. 3abcb01 Apply SF patch #1698994: Add getstate() and setstate() by Walter Dörwald · 17 years ago
  32. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 17 years ago
  33. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 17 years ago
  34. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  35. a977329 Merge part of the trunk changes into the p3yk branch. This merges from 43030 by Thomas Wouters · 18 years ago
  36. ca19943 If size is specified, try to read at least size characters. by Walter Dörwald · 18 years ago
  37. 536cf99 Whitespace normalization. by Tim Peters · 18 years ago
  38. 4ed6738 Patch #1268314: Cache lines in StreamReader.readlines for performance. by Martin v. Löwis · 19 years ago
  39. c5238b8 SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads by Walter Dörwald · 19 years ago
  40. 56066d2 Return complete lines from codec stream readers by Martin v. Löwis · 19 years ago
  41. c9878e1 Make attributes and local variables in the StreamReader str objects instead by Walter Dörwald · 19 years ago
  42. a4eb2d5 Fix comment. by Walter Dörwald · 19 years ago
  43. bc8e642 If the data read from the bytestream in readline() ends in a '\r' read one more by Walter Dörwald · 19 years ago
  44. 714f878 Fix typos. by Walter Dörwald · 19 years ago
  45. 7a6dc13 Fix for SF bug #1175396: readline() will now read one more character, if by Walter Dörwald · 19 years ago
  46. 9f5f9d9 typo by Skip Montanaro · 19 years ago
  47. 71fd90d Add default value for "whence" argument. by Walter Dörwald · 19 years ago
  48. 729c31f Reset internal buffers when seek() is called. This fixes SF bug #1156259. by Walter Dörwald · 19 years ago
  49. e2713be Build with --disable-unicode again. Fixes #1158607. Will backport to 2.4. by Martin v. Löwis · 19 years ago
  50. 9fa0946 Fix and test for SF bug #1098990: codec readline() splits lines apart. by Walter Dörwald · 19 years ago
  51. e57d7b1 The changes to the stateful codecs in 2.4 resulted in StreamReader.readline() by Walter Dörwald · 19 years ago
  52. af5c7cf SF #1048865: Fix a trivial typo that breaks StreamReader.readlines() by Hye-Shik Chang · 20 years ago
  53. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  54. d594849 Ignore sizehint argument. Fixes SF #844561. by Marc-André Lemburg · 20 years ago
  55. 7f3ed74 Fix typos. by Walter Dörwald · 21 years ago
  56. 6ec0a8a sys was already imported, remove second import by Neal Norwitz · 21 years ago
  57. b28de0d Patch to make _codecs a builtin module. This is necessary since by Marc-André Lemburg · 21 years ago
  58. 7f82f79 Add missing documentation for the PEP 293 functionality to by Walter Dörwald · 22 years ago
  59. 4dbf192 Add next() and __iter__() methods to StreamReader, StreamReaderWriter by Walter Dörwald · 22 years ago
  60. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  61. 474458d Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE, by Walter Dörwald · 22 years ago
  62. 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 22 years ago
  63. b786e61 Set default value for readlines.sizehint to None. Change needed for 2.2.1 by Martin v. Löwis · 22 years ago
  64. aa32c5a Added new helpers for easy access to codecs. Docs will follow. by Marc-André Lemburg · 23 years ago
  65. 97c5635 Fix typo in comment by Andrew M. Kuchling · 23 years ago
  66. 02d893c Patch #444359: Remove unused imports. by Martin v. Löwis · 23 years ago
  67. 6cd441d Add dead imports of modules that are "magically" imported. by Martin v. Löwis · 23 years ago
  68. 3a2ab1a Whitespace normalization. by Tim Peters · 23 years ago
  69. 716cf91 Moved the encoding map building logic from the individual mapping by Marc-André Lemburg · 23 years ago
  70. 30324a7 Just changed "x,y" to "x, y" everywhere (i.e., inserted horizontal space by Tim Peters · 23 years ago
  71. e99d5ea added __all__ lists to a number of Python modules by Skip Montanaro · 23 years ago
  72. 88869f9 Whitespace normalization. by Tim Peters · 23 years ago
  73. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 23 years ago
  74. c6c2838 (Patch #102698) Fix for a bug reported by Wade Leftwich: by Andrew M. Kuchling · 23 years ago
  75. d254c00 Remove redundent information from a docstring. by Fred Drake · 24 years ago
  76. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  77. 349a3d3 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  78. d58c26f Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  79. 49fd107 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  80. 1c89b0e Deleted trailing whitespace. This is really a way to be able to add by Guido van Rossum · 24 years ago
  81. a327713 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  82. b95de4f Marc-Andre Lemburg: Error reporting in the codec registry and lookup by Guido van Rossum · 24 years ago
  83. d8855fd Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  84. 908670c Oops, another in the same file; I should read the mail fully before by Fred Drake · 24 years ago
  85. 3e74c0d "intput" --> "input" (in docstring); noted by Detlef Lannert by Fred Drake · 24 years ago
  86. 0612d84 Module codecs -- Python Codec Registry, API and helpers. Written by by Guido van Rossum · 24 years ago