1. 31 May, 2002 5 commits
  2. 30 May, 2002 1 commit
  3. 08 Mar, 2002 1 commit
    • Jeremy Hylton's avatar
      (Possibly) correct use of Python memory APIs. · ff24f9df
      Jeremy Hylton authored
      Fix SF bug #516768 reported by Dave Wallace.
      
      Replace use of PyMem_DEL() with PyObject_Del() on object dealloc
      functions.  The use of PyMem_DEL() is incorrect for object
      deallocation, because it only ever calls the low-level free().  If a
      custom allocator like pymalloc is used, it needs to be called to free
      the memory.
      
      Also replace bare malloc() and realloc() with PyMem_Malloc() and
      PyMem_Realloc().  I think this isn't a strict bug fix, but a would be
      nice.  It guarantees that BTrees objects get their memory from the
      same allocator as the Python core.
      ff24f9df
  4. 21 Feb, 2002 1 commit
  5. 20 Feb, 2002 1 commit
  6. 11 Feb, 2002 1 commit
  7. 25 Jan, 2002 1 commit
  8. 17 Jan, 2002 1 commit
    • Jeremy Hylton's avatar
      Merge Standby-branch to trunk (mostly). · dfdcb79b
      Jeremy Hylton authored
      The Standby-branch was branched from the StandaloneZODB-1_0-branch,
      which includes the BTrees-fsIndex code.  I didn't include that change
      in the merge, but everything else.  Terse summary follows:
      
      BTreeModuleTemplate.c:
          Greg Ward's ConflictError patch
      dfdcb79b
  9. 28 Nov, 2001 1 commit
  10. 08 Nov, 2001 1 commit
  11. 20 Jun, 2001 2 commits
  12. 03 Apr, 2001 1 commit
  13. 02 Apr, 2001 1 commit
  14. 01 Apr, 2001 1 commit
  15. 27 Mar, 2001 1 commit
  16. 20 Mar, 2001 1 commit
  17. 15 Mar, 2001 2 commits
  18. 19 Feb, 2001 4 commits