class Foo: def __init__(self): print "__init__" def __del__(self): print "__del__" foo = Foo() del foo foo = Foo()