1. d81206d Fix the damage to UserDict and its tests. by Guido van Rossum · 19 years ago
  2. e34cdd1 Fix for test_dict.py, thanks to Eduardo O Padoan. by Guido van Rossum · 19 years ago
  3. d4588c1 Get rid of some old TO TO items. by Guido van Rossum · 19 years ago
  4. 4726942 List of broken tests at this time. If you fix a test, please update this file. by Guido van Rossum · 19 years ago
  5. d9214d1 Make dict.keys() and dict.items() comparable to sets, using == and !=. by Guido van Rossum · 19 years ago
  6. e19aad4 Fix unittest. by Guido van Rossum · 19 years ago
  7. dde4c2c Fix another unit test. by Guido van Rossum · 19 years ago
  8. 8b8a543 Make test_logging pass. by Guido van Rossum · 19 years ago
  9. c2d9d7f Checkin the regenerated Python-ast.c and fix test_optparse. by Georg Brandl · 19 years ago
  10. 07f2436 Nailed test_weakref.py. Pfew, messy! by Guido van Rossum · 19 years ago
  11. 9afbb4e Two more trivial fixes. by Guido van Rossum · 19 years ago
  12. cd70eee Another fix. Partly reverted the tweaks done by the previous fix. by Guido van Rossum · 19 years ago
  13. 091153d Make test_sax pass. by Guido van Rossum · 19 years ago
  14. 87b6395 With the help of the improved fixer, test_with.py is now fixed. by Guido van Rossum · 19 years ago
  15. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 19 years ago
  16. 4e66dfc Random change to make this work unchanged when dict.keys() returns a dict view. by Guido van Rossum · 19 years ago
  17. 3ac6741 Implement __contains__ for dict_keys and dict_items. by Guido van Rossum · 19 years ago
  18. 83825ac Endow dict views with a proper length method. by Guido van Rossum · 19 years ago
  19. b90c848 Very preliminary work on dict views. by Guido van Rossum · 19 years ago
  20. 8b54536 News about softspace. by Guido van Rossum · 19 years ago
  21. e0192e5 Fix the remaining doctest failures. by Guido van Rossum · 19 years ago
  22. 79f5543 Ignore *.py[co]. by Guido van Rossum · 19 years ago
  23. 96bf7e8 Fix test_frozen. by Guido van Rossum · 19 years ago
  24. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 19 years ago
  25. bdc36e4 Redue the failure rate to 13 tests. Bah. by Guido van Rossum · 19 years ago
  26. 0bcbb0d Fix the roundtripping function. by Guido van Rossum · 19 years ago
  27. 9b88504 Fairly subtle fix for failing tests. by Guido van Rossum · 19 years ago
  28. 8df511b Trivial fix for test_profile.py. by Guido van Rossum · 19 years ago
  29. 4e4035b Found another difference between old and new print: by Guido van Rossum · 19 years ago
  30. 43fc78d More prints embedded in strings. by Guido van Rossum · 19 years ago
  31. ceae375 Fix a bogus end=' ' here. by Guido van Rossum · 19 years ago
  32. 374812c Two tests fixed with one fix. by Guido van Rossum · 19 years ago
  33. c420b2f Fix another test. by Guido van Rossum · 19 years ago
  34. d8c1967 Some more tests pass now. (Also test_compiler.py with -u all.) by Guido van Rossum · 19 years ago
  35. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 19 years ago
  36. 08c47ba Fix an unfortunate mis-conversion: sometimes "print x," must be by Guido van Rossum · 19 years ago
  37. fff80df Revert doubly-converted doctests. by Guido van Rossum · 19 years ago
  38. 7131f84 Fix a bunch of doctests with the -d option of refactor.py. by Guido van Rossum · 19 years ago
  39. 4502c80 Note that print is a function now. by Guido van Rossum · 19 years ago
  40. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 19 years ago
  41. 452bf51 Essential changes for print function changes. by Guido van Rossum · 19 years ago
  42. 21298cf Remove bogus INCREF of ziptuple: it is a freshly-allocated tuple object. by Martin v. Löwis · 19 years ago
  43. 14b6d92 Fix refcounting bugs related to CONVERT_BINOP. by Martin v. Löwis · 19 years ago
  44. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 19 years ago
  45. 08f0046 - Fix conversion glitch in test_pyclbr, which caused a test to not fail by Thomas Wouters · 19 years ago
  46. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 19 years ago
  47. ec7027f Update news about int/long unification. by Guido van Rossum · 19 years ago
  48. 398db8b Add missing entry for PEP 3102 (keyword-only arguments). by Brett Cannon · 19 years ago
  49. e33a611 Fix minor grammar typo. by Brett Cannon · 19 years ago
  50. c7202a8 Fix L-suffixed literal straggler. by Guido van Rossum · 19 years ago
  51. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 19 years ago
  52. fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 19 years ago
  53. c5c6f24 No more tests are broken AFAIK. by Guido van Rossum · 19 years ago
  54. 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 19 years ago
  55. f410000 Fix pickletools doctests -- all we get nowadays is longs. by Guido van Rossum · 19 years ago
  56. 4c9695a Fix repr.py -- it was triggering on the type name 'long', should be 'int'. by Guido van Rossum · 19 years ago
  57. 018919a Merged revisions 53434 via svnmerge from by Guido van Rossum · 19 years ago
  58. 65eabe3 One more test breakage hits the dust. The test was clearly in the wrong. by Guido van Rossum · 19 years ago
  59. 56be3b1 Fix new bug in ftplib.py introduced by exception scope limitation. by Guido van Rossum · 19 years ago
  60. 3a4e978 Honesty before all. by Guido van Rossum · 19 years ago
  61. 52d0178 Fix cPickle breakage due to last-minute change to the name of the 'long' type by Guido van Rossum · 19 years ago
  62. ab18684 News about int/long unification and except syntax change. by Guido van Rossum · 19 years ago
  63. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 19 years ago
  64. 5b787e8 Fix pybench so it works -- Larry Hastings. by Guido van Rossum · 19 years ago
  65. 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 19 years ago
  66. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 19 years ago
  67. 893523e News about removal of the sets module. by Guido van Rossum · 19 years ago
  68. 33552e9 Excise the sets module. SF #1500611 by Collin Winter. by Guido van Rossum · 19 years ago
  69. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 19 years ago
  70. 84f248d Add the bytes type to the build process. by Martin v. Löwis · 19 years ago
  71. 37ffcf7 Commit __version__ change. by Martin v. Löwis · 19 years ago
  72. 34e4f52 avoid dict.has_key, since this might get used by a Py3K built in the by Fred Drake · 19 years ago
  73. 3203bdc Update the magic number now that signature annotations were added. by Guido van Rossum · 19 years ago
  74. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 19 years ago
  75. f6657e6 Cruft removal: by Neal Norwitz · 19 years ago
  76. 545686b Remove PyFloat_AsReprString() and PyFloat_AsString() which should not by Neal Norwitz · 19 years ago
  77. 51d0022 hide version notes for 1.x and 2.x from the HTML version by Fred Drake · 19 years ago
  78. 9a4e95c The opstrings table was backwards. Add an XXX comment. by Guido van Rossum · 19 years ago
  79. 66a796e Patch #1601678: move intern() to sys.intern(). by Georg Brandl · 19 years ago
  80. 376446d Implement extended slicing in bytes objects. by Thomas Wouters · 19 years ago
  81. 5672904 Oops, re-add 'static' qualifier. by Thomas Wouters · 19 years ago
  82. 2bdf2cb Regenerate frozen.c's manual marshal as directed, fixing test_frozen. by Thomas Wouters · 19 years ago
  83. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 19 years ago
  84. 16f3e03 Check "sep" and "end" for stringness in Print(). by Georg Brandl · 19 years ago
  85. 3434351 Add built-in Print() function. This is PEP 3105 except for the name; by Guido van Rossum · 19 years ago
  86. 6297128 replace references to __nonzero__ with __bool__ by Jack Diederich · 19 years ago
  87. 030debb updated docstring on __bool__ to match behavior by Jack Diederich · 19 years ago
  88. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 19 years ago
  89. dfc9d4f Unit tests for PEP 3102, by Jiwon Seo. Forgot to add these earlier. by Guido van Rossum · 19 years ago
  90. f59677a The rest of patch 1549670 by Jiwon, making the compiler test pass. by Guido van Rossum · 19 years ago
  91. 29602e4 Make it compile with older compilers. by Guido van Rossum · 19 years ago
  92. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 19 years ago
  93. fc2a0a8 Thomas Heller fixed modulefinder and added a test. Thanks! by Guido van Rossum · 19 years ago
  94. 2def557 This module was still referencing some dead EXEC related constants. by Guido van Rossum · 19 years ago
  95. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 19 years ago
  96. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 19 years ago
  97. 4e472e0 Fix comment for indenting in C files. by Brett Cannon · 19 years ago
  98. d4ccfcb Fix latex2html compile error by George Yoshida · 19 years ago
  99. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 19 years ago
  100. 378b2c9 Get rid of more coerce cruft, update NEWS by Neal Norwitz · 19 years ago