Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法从 setuptoolssetup.py文件中设置优化级别?有没有办法在 setuptools 中设置优化级别?
setup.py
我有很多__debug__发布时不需要的样式日志记录。
__debug__
您可以通过 Python 命令行上的 -O 开关控制 .pyc 与 .pyo 的使用。Python 甚至不会尝试在没有 -O 开关的情况下使用 .pyo 文件,因此在设置时将 .py 文件编译为 .pyo 文件将无济于事:您需要使用 -O 开关或 PYTHONOPTIMIZE 调用程序环境变量。