>>> class Test: ... def __del__(self): ... print "deleted" ... >>> test = Test() >>> del test deleted