1. 13 Mar, 2002 5 commits
  2. 12 Mar, 2002 9 commits
  3. 11 Mar, 2002 25 commits
  4. 08 Mar, 2002 1 commit
    • Jeremy Hylton's avatar
      (Possibly) correct use of Python memory APIs. · 4a8d43bb
      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.
      4a8d43bb