class X:
    def __del__(self):
        print 'hello'

x = X()

