捕获 sys.exit 调用的方法

import sys


def exitfunc():
    print 'exit!'

sys.exitfunc = exitfunc
sys.exit(1)