使用atexit模块:
import mymodule
import atexit
# call mymodule.unload('param1', 'param2') when the interpreter exits:
atexit.register(mymodule.unload, 'param1', 'param2')
文档中的另一个简单示例,使用register
作为装饰器:
import atexit
@atexit.register
def goodbye():
print "You are now leaving the Python sector."