#!/usr/bin/python import gc #gc.set_debug(gc.DEBUG_LEAK) class Foo(dict): def __init__(self): self.__dict__ = self while True: o = Foo() gc.collect()