1. 1324c6f There's no longer a u prefix for unicode objects => drop it. by Walter Dörwald · 17 years ago
  2. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  3. 0ac30f8 Enhance the punycode decoder so that it can decode unicode objects. by Walter Dörwald · 17 years ago
  4. 1f05a3b Fix the array tests. Only a minor change to the C code was required. by Guido van Rossum · 17 years ago
  5. c3ab0a7 Use io.BytesIO instead of StringIO.StringIO in all by Walter Dörwald · 17 years ago
  6. 5205653 Merged revisions 55184-55224 via svnmerge from by Guido van Rossum · 17 years ago
  7. a4c6128 Fix punycode codec and tests. by Walter Dörwald · 17 years ago
  8. 5c4501a Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  9. 62b8871 Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  10. e2c8f2d Fix code depending on exception unpacking. by Guido van Rossum · 17 years ago
  11. 7fe7d1a Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  12. a5c313d Add to an XXX comment. by Guido van Rossum · 17 years ago
  13. 0e02abb Random modifications that slightly improve the chances of this not blowing up. by Guido van Rossum · 17 years ago
  14. 33f3124 Support PEP-263-style coding declarations. Default to UTF-8 per PEP-3120. by Guido van Rossum · 17 years ago
  15. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  16. 3699582 Fix trivial bug in idna encoding. by Guido van Rossum · 17 years ago
  17. 00048f0 test_codeccallbacks.py passes again. by Walter Dörwald · 17 years ago
  18. e6d3904 Make test_marshal pass. Not my best work. :-( by Guido van Rossum · 17 years ago
  19. bc14efb Make the StringIO test pass. by Guido van Rossum · 17 years ago
  20. cfe5f20 Got test_pickletools and test_pickle working. by Guido van Rossum · 17 years ago
  21. f9e91c9 Given that ord() of a bytes object of length 1 is defined, it should by Guido van Rossum · 17 years ago
  22. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  23. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  24. e5e80b8 Kill u"..." string quotes. Thought I already did that. by Guido van Rossum · 17 years ago
  25. b8142c3 Got test_exceptions.py working. by Guido van Rossum · 17 years ago
  26. 74302db Get rid of 'file' built-in. Get rid of types.StringType and friends. by Guido van Rossum · 17 years ago
  27. 617dbc4 Checkpoint. A b it closer to working pickles and pickletools. by Guido van Rossum · 17 years ago
  28. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  29. 9bc4712 Add two more space tests. by Walter Dörwald · 17 years ago
  30. 20badb3 Remove duplicate tests. by Walter Dörwald · 17 years ago
  31. db290f0 Fix %c overflow test. by Walter Dörwald · 17 years ago
  32. 67e8388 test_unicode.py passes again 9except for problems with the idna codec. by Walter Dörwald · 17 years ago
  33. 1255ed6 Much more pickling now works. by Guido van Rossum · 17 years ago
  34. 2e6a4b3 Checkpoint. Make pickle.py read/write bytes. by Guido van Rossum · 17 years ago
  35. c2b87a6 Don't use StringType -- always test for basestring. by Guido van Rossum · 17 years ago
  36. ca8a8d0 Make the BOM constants in codecs.py bytes. by Walter Dörwald · 17 years ago
  37. bf58bd6 Use basestring instead of (str, str8) to test whether cls is a module *name*. by Walter Dörwald · 17 years ago
  38. d7c43dd test_exceptions.py passes, except for pickling of course. by Guido van Rossum · 17 years ago
  39. d1ea73b Make test_types.py pass. by Guido van Rossum · 17 years ago
  40. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  41. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  42. bae5ced Temporary fix: Module names are still 8bit strings. This by Walter Dörwald · 17 years ago
  43. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  44. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  45. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  46. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  47. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  48. 71011e2 Allow decorators and return annotations to be used together (fixes SF#1697248) by Nick Coghlan · 17 years ago
  49. 4138bfe Don't crash when nonlocal is used at module level (fixes SF#1705365) by Nick Coghlan · 17 years ago
  50. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  51. 2fa74bb If $PYTHONNEWIO is set and nonempty, by Guido van Rossum · 17 years ago
  52. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  53. ff11334 Remove the SlowParser class because it depended on the xmllib module by Neal Norwitz · 17 years ago
  54. 53855c6 Remove the xmllib module that was obsolete. by Neal Norwitz · 17 years ago
  55. e6c6e3d Remove old string module by Neal Norwitz · 17 years ago
  56. 9b483f1 Remove ancient platforms: AIX 3 and Irix 5. (AIX 4 and Irix 6 remain.) by Neal Norwitz · 17 years ago
  57. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 17 years ago
  58. 3abcb01 Apply SF patch #1698994: Add getstate() and setstate() by Walter Dörwald · 17 years ago
  59. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  60. 6ef6306 Oops, don't test for a name attribute here. That's a higher-level feature. by Guido van Rossum · 17 years ago
  61. 13633bb Support name and mode attributes on all file types. by Guido van Rossum · 17 years ago
  62. 98f9746 Support marshal.dump(x, f) where f is not a real file. by Guido van Rossum · 17 years ago
  63. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 17 years ago
  64. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  65. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  66. 682faf8 Fix most XXX remarks. by Guido van Rossum · 17 years ago
  67. 31c3a57 Test closed, mode attribute; don't test __exit__(). by Guido van Rossum · 17 years ago
  68. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  69. aa43ed9 TextIO improvement: by Guido van Rossum · 17 years ago
  70. 57b39e0 Bug #1697782: remove all remaining code that uses types.InstanceType. by Georg Brandl · 17 years ago
  71. b5ddcfd Make array().tofile() work with a new I/O object. by Guido van Rossum · 17 years ago
  72. d071281 Re-enable cleanup code. by Guido van Rossum · 17 years ago
  73. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  74. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  75. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  76. 0ad0812 An example of action-at-a-distance: fix the problems I had in test_io.py by Guido van Rossum · 17 years ago
  77. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  78. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  79. 34d69e5 Skip large file tests on Windowns and OSX. by Guido van Rossum · 17 years ago
  80. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  81. cce92b2 BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase! by Guido van Rossum · 17 years ago
  82. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  83. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  84. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  85. 62cbc8a Make sure that a forked child process exits even if it raises an exception. by Guido van Rossum · 17 years ago
  86. 933520b Fix a place where it's pretty clear that a binary open mode was intended. by Guido van Rossum · 17 years ago
  87. 4f0db6e Cleanup. by Guido van Rossum · 17 years ago
  88. 756aa93 A class used as an exception should inherit from Exception. by Guido van Rossum · 17 years ago
  89. 9be5597 Add some backwards compatibility stuff. by Guido van Rossum · 17 years ago
  90. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  91. 1866859 Get rid of duplicate definition of BufferedIOBase. by Guido van Rossum · 17 years ago
  92. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  93. 42dae6a Make readonly members defined in C throw an AttributeError on modification. This brings them into sync with Python-level attributes. Fixes bug #1687163. by Collin Winter · 17 years ago
  94. d84da1b More fixes related to removal of exception slicing. by Guido van Rossum · 17 years ago
  95. 782ff27 Fix errors in bsddb3 tests due to removal of exception slicing. by Guido van Rossum · 17 years ago
  96. cef2098 Moving xreload to the sandbox for now. by Guido van Rossum · 17 years ago
  97. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 17 years ago
  98. e33761d Fix two bugs related to the remove of exception subscripting. by Collin Winter · 17 years ago
  99. ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 17 years ago
  100. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 17 years ago