1. ca8a8d0 Make the BOM constants in codecs.py bytes. by Walter Dörwald · 18 years ago
  2. bf58bd6 Use basestring instead of (str, str8) to test whether cls is a module *name*. by Walter Dörwald · 18 years ago
  3. d7c43dd test_exceptions.py passes, except for pickling of course. by Guido van Rossum · 18 years ago
  4. d1ea73b Make test_types.py pass. by Guido van Rossum · 18 years ago
  5. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 18 years ago
  6. f15a29f More coding by random modification. by Guido van Rossum · 18 years ago
  7. bae5ced Temporary fix: Module names are still 8bit strings. This by Walter Dörwald · 18 years ago
  8. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 18 years ago
  9. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 18 years ago
  10. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
  11. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 18 years ago
  12. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
  13. 71011e2 Allow decorators and return annotations to be used together (fixes SF#1697248) by Nick Coghlan · 18 years ago
  14. 4138bfe Don't crash when nonlocal is used at module level (fixes SF#1705365) by Nick Coghlan · 18 years ago
  15. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 18 years ago
  16. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 18 years ago
  17. 53855c6 Remove the xmllib module that was obsolete. by Neal Norwitz · 18 years ago
  18. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 18 years ago
  19. 3abcb01 Apply SF patch #1698994: Add getstate() and setstate() by Walter Dörwald · 18 years ago
  20. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 18 years ago
  21. 6ef6306 Oops, don't test for a name attribute here. That's a higher-level feature. by Guido van Rossum · 18 years ago
  22. 13633bb Support name and mode attributes on all file types. by Guido van Rossum · 18 years ago
  23. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 18 years ago
  24. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 18 years ago
  25. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 18 years ago
  26. 682faf8 Fix most XXX remarks. by Guido van Rossum · 18 years ago
  27. 31c3a57 Test closed, mode attribute; don't test __exit__(). by Guido van Rossum · 18 years ago
  28. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 18 years ago
  29. 57b39e0 Bug #1697782: remove all remaining code that uses types.InstanceType. by Georg Brandl · 18 years ago
  30. b5ddcfd Make array().tofile() work with a new I/O object. by Guido van Rossum · 18 years ago
  31. d071281 Re-enable cleanup code. by Guido van Rossum · 18 years ago
  32. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 18 years ago
  33. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 18 years ago
  34. 0ad0812 An example of action-at-a-distance: fix the problems I had in test_io.py by Guido van Rossum · 18 years ago
  35. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 18 years ago
  36. 8742977 truncate() returns the new size and position. by Guido van Rossum · 18 years ago
  37. 34d69e5 Skip large file tests on Windowns and OSX. by Guido van Rossum · 18 years ago
  38. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 18 years ago
  39. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 18 years ago
  40. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 18 years ago
  41. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 18 years ago
  42. 62cbc8a Make sure that a forked child process exits even if it raises an exception. by Guido van Rossum · 18 years ago
  43. 933520b Fix a place where it's pretty clear that a binary open mode was intended. by Guido van Rossum · 18 years ago
  44. 76c5d4d Checkpoint. by Guido van Rossum · 18 years ago
  45. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 18 years ago
  46. 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 · 18 years ago
  47. cef2098 Moving xreload to the sandbox for now. by Guido van Rossum · 18 years ago
  48. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 18 years ago
  49. e33761d Fix two bugs related to the remove of exception subscripting. by Collin Winter · 18 years ago
  50. ca477b2 When removing indexing/slicing on exceptions some places were changed by Brett Cannon · 18 years ago
  51. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 18 years ago
  52. 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 · 18 years ago
  53. d16e81a Fix the compiler package w.r.t. the new metaclass syntax. by Guido van Rossum · 18 years ago
  54. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 18 years ago
  55. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 18 years ago
  56. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 18 years ago
  57. 7afaa88 Move test_unittest, test_doctest and test_doctest2 higher up in the test order by Collin Winter · 18 years ago
  58. 49dc35b Fix another unittest that broke due to dict views (more precisely, due by Guido van Rossum · 18 years ago
  59. de3bc7c Fix embarrassing syntax mix. by Guido van Rossum · 18 years ago
  60. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 18 years ago
  61. 4d0f5a4 Delete TESTFN after the test. by Guido van Rossum · 18 years ago
  62. 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 18 years ago
  63. 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 18 years ago
  64. c788554 Addendum of patch #1669633: additional tests for bytes methods. by Georg Brandl · 18 years ago
  65. 3695bf3 Use __builtin__, not __builtins__. by Brett Cannon · 18 years ago
  66. 4af7dcf Fix test_pep352 to deal with the removal of the 'exceptions' module. by Brett Cannon · 18 years ago
  67. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 18 years ago
  68. fa04e1a Fix breakage from removing exceptions module by Neal Norwitz · 18 years ago
  69. 68bbcd2 Mike Verdone's checkpoint, cleaned up. by Guido van Rossum · 18 years ago
  70. 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 18 years ago
  71. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 18 years ago
  72. 28524c7 Checkpoint for new I/O library. by Guido van Rossum · 18 years ago
  73. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 18 years ago
  74. 44c5261 Tweak the fix for test_traceback since the fix for it to run on its own broke by Brett Cannon · 18 years ago
  75. dfb2a8a Fix a broken test in test_traceback where the module name was being tacked on by Brett Cannon · 18 years ago
  76. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 18 years ago
  77. ce4a475 Add -d/--debug option to print traceback without -v/--verbose. by Guido van Rossum · 18 years ago
  78. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 18 years ago
  79. f74225d You can no longer catch non-BaseException objects; TypeError is raised if such by Brett Cannon · 18 years ago
  80. a88a033 Add raw_input() back, named input(). Revive the old unittests too. by Guido van Rossum · 18 years ago
  81. 55b4a4a Add a proper unit test for xreload.py. by Guido van Rossum · 18 years ago
  82. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 18 years ago
  83. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 18 years ago
  84. fa35365 Merged revisions 53859-53874 via svnmerge from by Thomas Wouters · 18 years ago
  85. 00e41de Bytes literal. by Thomas Wouters · 18 years ago
  86. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 18 years ago
  87. 63eecc7 Fix the last two tests. by Guido van Rossum · 18 years ago
  88. 5b8d24a Fix obvious problems from switch to dict views. Some tests still fail over by Brett Cannon · 18 years ago
  89. c1b22a0 Fix dumbdbm and test_dumbdbm to work with dict views. Bug in dumbdbm was from by Brett Cannon · 18 years ago
  90. f0c82f9 Fix test_importhooks for dict views. by Brett Cannon · 18 years ago
  91. 0caf6d8 Fix test_iter after the dict views conversion. by Brett Cannon · 18 years ago
  92. eb6b0ee Fix test_iterlen by returning the iterator of dict views. Problem is that by Brett Cannon · 18 years ago
  93. 861fd6f Fix xml.dom.minidom so it works again after the dict views introduction. by Brett Cannon · 18 years ago
  94. ecca313 Fix test_mutants for dict views. by Brett Cannon · 18 years ago
  95. 67582d2 Fix test_os from breakage due to dict views. by Brett Cannon · 18 years ago
  96. 75d26cc Some more test now pass. by Guido van Rossum · 18 years ago
  97. d81206d Fix the damage to UserDict and its tests. by Guido van Rossum · 18 years ago
  98. e34cdd1 Fix for test_dict.py, thanks to Eduardo O Padoan. by Guido van Rossum · 19 years ago
  99. d9214d1 Make dict.keys() and dict.items() comparable to sets, using == and !=. by Guido van Rossum · 19 years ago
  100. e19aad4 Fix unittest. by Guido van Rossum · 19 years ago