1. 07 Aug, 2001 3 commits
  2. 06 Aug, 2001 3 commits
  3. 03 Aug, 2001 1 commit
  4. 30 Jul, 2001 2 commits
  5. 19 Jul, 2001 1 commit
  6. 17 Jul, 2001 1 commit
  7. 13 Jul, 2001 1 commit
  8. 09 Jul, 2001 1 commit
  9. 20 Jun, 2001 3 commits
  10. 15 Jun, 2001 1 commit
    • Barry Warsaw's avatar
      checkHistoryAfterVersionCommit(), checkHistoryAfterVersionAbort(): · 904f8975
      Barry Warsaw authored
      After consultation with Jim, we agreed that Full's behavior vis object
      serial numbers after a version commit/abort are correct.  The new
      revision should get the serial number of the transaction that did the
      commit/abort.
      
      FileStorage is actually broken here; the new revision gets the same
      serial number as the last in-version revision.  However, the way the
      tests are written, it works for either storage, so I'm just updating
      some comments to explain the situation.
      
      Note: Jim also explained that history()'s "version" argument should be
      ignored.  Doesn't make much difference to these tests though.
      904f8975
  11. 14 Jun, 2001 6 commits
  12. 11 Jun, 2001 1 commit
  13. 08 Jun, 2001 1 commit
  14. 05 Jun, 2001 2 commits
  15. 04 Jun, 2001 3 commits
  16. 01 Jun, 2001 4 commits
  17. 31 May, 2001 1 commit
  18. 30 May, 2001 2 commits
  19. 23 May, 2001 2 commits
  20. 22 May, 2001 1 commit
    • Jeremy Hylton's avatar
      Remove many unused default argument definitions used as speed optimizations. · 7b3ca9e6
      Jeremy Hylton authored
      Many methods had default arguments that were used to bind a global or
      builtin name, like type, None, or type(''), as a local name.  In many
      cases, the names bound were not referenced in the method body
      (presumably they used to be referenced).
      
      commit_sub(): In this one case, delete the default arg anyway, because
          it's only used once.
      7b3ca9e6