Re: [PyQt] [BUG] No exception reports in a QThread with Python 3

2013-02-20 Thread Phil Thompson
On Sun, 3 Feb 2013 14:55:51 +, Richie Ward wrote: > If you run the following code with Python 3, you will not recieve a > exception; dispite it being blatently wrong. > import sys > from PyQt4 import QtGui, QtCore > > class FooThread(QtCore.QThread): > > def run(self): > beeswax

[PyQt] [BUG] No exception reports in a QThread with Python 3

2013-02-03 Thread Richie Ward
If you run the following code with Python 3, you will not recieve a exception; dispite it being blatently wrong. import sys from PyQt4 import QtGui, QtCore class FooThread(QtCore.QThread): def run(self): beeswax return if __name__ == "__main__": app = QtGui.QApplication(