答案 0 :(得分:6)
这已经在当前的夜间修复(1.6.1)。有关获取它的详细信息,请参阅:http://pydev.org/download.html。
请注意,您只需在本地更改“导入线程”(在org.python.pydev.debug / pysrc / pydevd.py中):
try:
import thread
except ImportError:
import _thread as thread #Py3K changed it.
干杯,
的Fabio
答案 1 :(得分:1)
答案 2 :(得分:0)