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 与 LiClipse 一起使用,并且每隔一段时间我都会浏览一下我的文件顶部以找到类似这样的内容:
from compiler.ast import Name from twisted.words.test.test_basesupport import self from macpath import curdir
也就是说,完全随机的导入与我输入的名称有关,但绝对是尝试导入的错误内容。
为什么会发生这种情况,我该如何让它停止?
我终于明白为什么这会发生在我身上。
在 PyDev 代码自动完成中,如果我开始输入变量名,几个匹配项会在它们旁边出现一个类名。
如果您单击与您在 PyDev 中使用的类名不同的自动完成选项之一,则会自动将文件导入您正在处理的文件/类中。