1. 28 Mar, 2002 1 commit
  2. 27 Mar, 2002 1 commit
  3. 15 Mar, 2002 4 commits
  4. 12 Mar, 2002 2 commits
  5. 11 Mar, 2002 1 commit
  6. 08 Mar, 2002 3 commits
    • Jeremy Hylton's avatar
      (Possibly) correct use of Python memory APIs. · 8d5f319c
      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.
      8d5f319c
    • Jeremy Hylton's avatar
      (Possibly) correct use of Python memory APIs. · b258cbf4
      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.
      b258cbf4
    • Jeremy Hylton's avatar
      Add a sane __str__() to transaction objects. · 7ec2d4dc
      Jeremy Hylton authored
         The previous, insane version was passing None or a thread id to "%.03f".
      
      Add some whitespace around get_transaction() implementations.
      7ec2d4dc
  7. 28 Feb, 2002 2 commits
  8. 21 Feb, 2002 1 commit
  9. 20 Feb, 2002 1 commit
  10. 13 Feb, 2002 1 commit
  11. 12 Feb, 2002 3 commits
  12. 11 Feb, 2002 6 commits
  13. 07 Feb, 2002 1 commit
  14. 30 Jan, 2002 12 commits
  15. 28 Jan, 2002 1 commit