1. 01 May, 2003 3 commits
  2. 30 Apr, 2003 2 commits
  3. 29 Apr, 2003 2 commits
  4. 25 Apr, 2003 1 commit
  5. 24 Apr, 2003 3 commits
  6. 23 Apr, 2003 5 commits
  7. 22 Apr, 2003 8 commits
  8. 21 Apr, 2003 2 commits
  9. 17 Apr, 2003 1 commit
  10. 16 Apr, 2003 1 commit
  11. 11 Apr, 2003 3 commits
  12. 10 Apr, 2003 1 commit
  13. 09 Apr, 2003 3 commits
  14. 08 Apr, 2003 5 commits
    • Barry Warsaw's avatar
      Another test MappingStorage won't pass. · edfa017f
      Barry Warsaw authored
      edfa017f
    • Barry Warsaw's avatar
      Update comment. · e8c5681f
      Barry Warsaw authored
      e8c5681f
    • Barry Warsaw's avatar
      None of the ZEO tests were actually using any storage other than · 6220253d
      Barry Warsaw authored
      FileStorage.  Fixed this and then had to no-op all the tests that
      MappingStorage can't possibly pass.
      
      I think there may still be problems with BDB which I'll follow up on
      next.
      6220253d
    • Jeremy Hylton's avatar
      Cleanup __del__. · 6fcc4daa
      Jeremy Hylton authored
      You never need an __del__ to close a file.  A file closes itself when
      it is deallocated.
      
      Don't give an object a magic __del__ attribute.  It won't work with
      new-style classes, and it's obscure anyway.
      6fcc4daa
    • Jeremy Hylton's avatar
      Backport atomic invalidations code from Zope3. · 61cbc091
      Jeremy Hylton authored
      The DB's invalidate() method takes a set of oids corresponding to all
      the changes from a data manager for one transaction.  All the objects
      are invalidated at once.
      
      Add a few tests in testZODB of the new code.  The tests just cover
      corner cases, because I can't think of a sensible way to test the
      atomicity.  When it has failed in the past, it's been caused by
      nearly-impossible to reproduce data races.
      
      This fix needs to be backported to Zope 2.6, but only after assessing
      how significant an impact the API change will have.
      61cbc091