我最近将Python(x,y)更新为最新版本。
我有一个之前正在运行的脚本,现在显示超过40个像这样的错误:
Module 'PyQt4.QtCore' has no 'QThread' member
Module 'PyQt4.QtCore' has no 'pyqtSignal' member
Module 'PyQt4.QtGui' has no 'QWidget' member
....
...
and so on
似乎有些事情是错误的PyQt4 ???
在我的剧本开始时,我尝试了以下所有内容:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4 import QtCore, QtGui, Qt
没有任何作用。
有人能帮助我吗?