使用 py2app 构建时,导入整个模块(例如 wxpython)对应用程序的大小有多大影响?

发布于 2024-11-04 16:11:42 字数 62 浏览 4 评论 0原文

例如,当构建为独立应用程序时,使用 import TextCrtl from wx 是否会使应用程序变得更小?

Does using, for example, import TextCrtl from wx make the application smaller when built as a stand alone app?

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

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

发布评论

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

评论(1

千仐 2024-11-11 16:11:42

无论您导入模块,还是从模块导入某些内容,整个模块始终都会被执行。唯一的区别是添加到命名空间的内容。

这是关于这个主题的一个很好的答案:Does“from-import " 执行整个模块?

所以答案是否定的,整个模块将始终被包含。

Whether you import a module, or import something from a module, the entire module is always executed. The only difference is what is added to the namespace.

Here's a nice SO answer on this subject: Does "from-import" exec the whole module?

So the answer is no, the entire module will always be included.

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