1. 9d2ac22 Fix io.StringIO: String are stored encoded (using "unicode-internal" as the by Walter Dörwald · 17 years ago
  2. c9e363c Make test_subprocess pass. The subprocess module now reads and writes by Guido van Rossum · 17 years ago
  3. af2362a Make test_sys pass. by Guido van Rossum · 17 years ago
  4. 7f21d30 Make test_strop pass. (But shouldn't we kill strop?) by Guido van Rossum · 17 years ago
  5. 7ebb970 Make test_re pass. by Guido van Rossum · 17 years ago
  6. e108373 It's ok for __hex__ or __oct__ to return unicode. by Guido van Rossum · 17 years ago
  7. a45ea58 Make test_fileio.py work. by Guido van Rossum · 17 years ago
  8. ea0ebd8 Make test_str.py pass. by Guido van Rossum · 17 years ago
  9. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  10. c4afa10 Fix the picklevalue test; it broke due to the change in default protocol. by Guido van Rossum · 17 years ago
  11. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  12. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  13. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  14. 1324c6f There's no longer a u prefix for unicode objects => drop it. by Walter Dörwald · 17 years ago
  15. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  16. 0ac30f8 Enhance the punycode decoder so that it can decode unicode objects. by Walter Dörwald · 17 years ago
  17. 1f05a3b Fix the array tests. Only a minor change to the C code was required. by Guido van Rossum · 17 years ago
  18. c3ab0a7 Use io.BytesIO instead of StringIO.StringIO in all by Walter Dörwald · 17 years ago
  19. 5205653 Merged revisions 55184-55224 via svnmerge from by Guido van Rossum · 17 years ago
  20. a4c6128 Fix punycode codec and tests. by Walter Dörwald · 17 years ago
  21. 5c4501a Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  22. 62b8871 Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  23. e2c8f2d Fix code depending on exception unpacking. by Guido van Rossum · 17 years ago
  24. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  25. 00048f0 test_codeccallbacks.py passes again. by Walter Dörwald · 17 years ago
  26. e6d3904 Make test_marshal pass. Not my best work. :-( by Guido van Rossum · 17 years ago
  27. bc14efb Make the StringIO test pass. by Guido van Rossum · 17 years ago
  28. cfe5f20 Got test_pickletools and test_pickle working. by Guido van Rossum · 17 years ago
  29. f9e91c9 Given that ord() of a bytes object of length 1 is defined, it should by Guido van Rossum · 17 years ago
  30. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  31. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  32. e5e80b8 Kill u"..." string quotes. Thought I already did that. by Guido van Rossum · 17 years ago
  33. b8142c3 Got test_exceptions.py working. by Guido van Rossum · 17 years ago
  34. 617dbc4 Checkpoint. A b it closer to working pickles and pickletools. by Guido van Rossum · 17 years ago
  35. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  36. 9bc4712 Add two more space tests. by Walter Dörwald · 17 years ago
  37. 20badb3 Remove duplicate tests. by Walter Dörwald · 17 years ago
  38. db290f0 Fix %c overflow test. by Walter Dörwald · 17 years ago
  39. 67e8388 test_unicode.py passes again 9except for problems with the idna codec. by Walter Dörwald · 17 years ago
  40. ca8a8d0 Make the BOM constants in codecs.py bytes. by Walter Dörwald · 17 years ago
  41. bf58bd6 Use basestring instead of (str, str8) to test whether cls is a module *name*. by Walter Dörwald · 17 years ago
  42. d7c43dd test_exceptions.py passes, except for pickling of course. by Guido van Rossum · 17 years ago
  43. d1ea73b Make test_types.py pass. by Guido van Rossum · 17 years ago
  44. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  45. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  46. bae5ced Temporary fix: Module names are still 8bit strings. This by Walter Dörwald · 17 years ago
  47. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  48. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  49. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  50. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  51. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  52. 71011e2 Allow decorators and return annotations to be used together (fixes SF#1697248) by Nick Coghlan · 17 years ago
  53. 4138bfe Don't crash when nonlocal is used at module level (fixes SF#1705365) by Nick Coghlan · 17 years ago
  54. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  55. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  56. 53855c6 Remove the xmllib module that was obsolete. 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. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 17 years ago
  63. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  64. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  65. 682faf8 Fix most XXX remarks. by Guido van Rossum · 17 years ago
  66. 31c3a57 Test closed, mode attribute; don't test __exit__(). by Guido van Rossum · 17 years ago
  67. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  68. 57b39e0 Bug #1697782: remove all remaining code that uses types.InstanceType. by Georg Brandl · 17 years ago
  69. b5ddcfd Make array().tofile() work with a new I/O object. by Guido van Rossum · 17 years ago
  70. d071281 Re-enable cleanup code. by Guido van Rossum · 17 years ago
  71. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  72. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  73. 0ad0812 An example of action-at-a-distance: fix the problems I had in test_io.py by Guido van Rossum · 17 years ago
  74. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  75. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  76. 34d69e5 Skip large file tests on Windowns and OSX. by Guido van Rossum · 17 years ago
  77. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  78. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  79. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  80. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  81. 62cbc8a Make sure that a forked child process exits even if it raises an exception. by Guido van Rossum · 17 years ago
  82. 933520b Fix a place where it's pretty clear that a binary open mode was intended. by Guido van Rossum · 17 years ago
  83. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  84. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  85. 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
  86. cef2098 Moving xreload to the sandbox for now. by Guido van Rossum · 17 years ago
  87. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 17 years ago
  88. e33761d Fix two bugs related to the remove of exception subscripting. by Collin Winter · 17 years ago
  89. ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 17 years ago
  90. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 17 years ago
  91. 670e692 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. by Collin Winter · 17 years ago
  92. d16e81a Fix the compiler package w.r.t. the new metaclass syntax. by Guido van Rossum · 17 years ago
  93. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  94. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  95. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  96. 7afaa88 Move test_unittest, test_doctest and test_doctest2 higher up in the test order by Collin Winter · 17 years ago
  97. 49dc35b Fix another unittest that broke due to dict views (more precisely, due by Guido van Rossum · 17 years ago
  98. de3bc7c Fix embarrassing syntax mix. by Guido van Rossum · 17 years ago
  99. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago
  100. 4d0f5a4 Delete TESTFN after the test. by Guido van Rossum · 17 years ago