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.
twistd.py我注意到 Twisted脚本顶部的以下内容:
twistd.py
import os, sys try: import _preamble except ImportError: sys.exc_clear() sys.path.insert(0, os.path.abspath(os.getcwd()))
做什么import _preamble?我似乎在 google-mage 上找不到任何对它的引用。
import _preamble
_preamble是一个和其他任何模块一样的模块。在 twisted 的情况下,这只是设置的模块,sys.path以便您可以在开发设置中运行 twisted。
_preamble
sys.path