Python 中的模块范围析构函数?

发布于 2024-12-18 09:27:36 字数 266 浏览 0 评论 0原文

我想知道是否有一个模块范围的析构函数,以便我们可以利用它来完成或调用模块中的某些特定关闭函数?

例如,模块 logbook 的一些处理程序被创建并放入堆栈中(例如 handler1.push_application() ,最好弹出 当你的程序退出时,如果有某种自动函数调用来执行此操作,那就太好了,模块范围的析构函数是我可能的候选者之一。可以思考:)

I am wondering if there is a module-wide destructor such that we can make use of it to finalize or call some specific shut down functions in a module?

For example, some handlers of the module logbook are created and pust into the stack (ex, handler1.push_application() and it is better to pop up those handlers when your program exit. It would be great to have some sort of automatically function-calls to do this and module-wide destructor is one of possible candidates I can think :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2024-12-25 09:27:36

atexit 模块 允许您注册 Python 会执行的清理函数在解释器终止时执行。

The atexit module allows you to register cleanup functions that Python will perform on interpreter termination.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文