[Python-Dev] A "new" kind of leak

Neil Schemenauer nas@python.ca
Fri, 12 Apr 2002 18:24:14 -0700


Guido van Rossum wrote:
> Adding GC to an object isn't hard, and the tp_traverse/tp_clear
> implementations probably port right over.

frameobject is not easy.  They use a free list, realloc and the
trashcan.  The 2.1 GC API is a lot harder to use correctly as well. :-(

  Neil