#!/usr/bin/python import signal class foo(object): def __del__(self, getsignal=signal.getsignal, SIGHUP=signal.SIGHUP): getsignal(SIGHUP) f=foo()