我正在用Python编写一个模块,它在后台运行一些进程。我希望它们在用户退出python解释器后结束。我使用了atexit模块并注册了我的exit()函数。但是,我仍然是因为函数没有运行,所以无法终止后台进程。 我的模块结构如下:
from atexit import register
def exit_formalities():
///Deleting temp directories and folders///
register(exit_formalities)
这是我的exit.py函数
{{1}}