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.
我是 PyDev 的新手,所以这可能是对我的问题的简单回答。
我拉入 PyDev 的代码使用 execfile 而不是导入来从另一个文件中拉入一个类。我无法控制代码,因此无法将其更改为导入。
execfile("my_class.py") my_class.function()
对于 execfile 引入的每个类,我得到一个未定义的变量。
有没有办法让 PyDev 识别我通过 execfile 引入的类。也许有某种方法可以在 PyDev 中进行隐式导入?