1. 01 Apr, 2003 11 commits
  2. 31 Mar, 2003 2 commits
    • Jeremy Hylton's avatar
      91179e57
    • Jeremy Hylton's avatar
      Fix several ref count bugs. · de5d6448
      Jeremy Hylton authored
      Remove object_from_oid() which appeared to be mis-used about half the
      time.  Instead use std PyDict_GetItem() and incref only when
      necessary.
      
      Make sure an object's reference to its cache is decref'd when the
      object is deallocated.  This change seems to eliminate leaking pickle
      caches.
      
      Remaining mystery: Why do objects stay in the cache even when there
      are no references to them?
      de5d6448
  3. 26 Mar, 2003 1 commit
  4. 25 Mar, 2003 2 commits
  5. 24 Mar, 2003 7 commits
  6. 21 Mar, 2003 1 commit
  7. 20 Mar, 2003 1 commit
    • Jeremy Hylton's avatar
      Change prepare() signature in IDataManager. · 626e22d6
      Jeremy Hylton authored
      The manager should raise an exception in its prepare() method rather
      than returning a boolean to indicate failure.  Rationale: The txn
      manager can't raise a reasonable exception, because it doesn't know
      what the data manager couldn't prepare.
      626e22d6
  8. 17 Mar, 2003 10 commits
  9. 16 Mar, 2003 1 commit
  10. 13 Mar, 2003 1 commit
  11. 10 Mar, 2003 2 commits
  12. 07 Mar, 2003 1 commit
    • Jeremy Hylton's avatar
      Catch errors that current during 2nd phase of 2PC. · eea28a70
      Jeremy Hylton authored
      It's not clear what the right answer is here.  The implementation
      aborts any remaining resource managers and hopes for the best, which
      isn't very satisfying.  Perhaps the hosed feature should come back.
      
      Add some comments about the issues involved.  Revise the tests to
      cover the current behavior.
      eea28a70