Hello, can someone help me with the following code:<br><br>---<br><br>from PyQt4 import QtGui, QtCore<br>import sys, qt4reactor<br><br>app = QtGui.QApplication(sys.argv)<br>mainwin = QtGui.QMainWindow()<br>mainwin.showMaximized()<br>
qt4reactor.install(app)<br>from twisted.internet import reactor<br><br>reactor.run()<br><br>---<br><br>the problem is the console window keeps displaying<br><br>QObject: Do not delete object, &#39;unnamed&#39;, during its event handler!<br>
QObject: Do not delete object, &#39;unnamed&#39;, during its event handler!<br>QObject: Do not delete object, &#39;unnamed&#39;, during its event handler!<br>QObject: Do not delete object, &#39;unnamed&#39;, during its event handler!<br>
QObject: Do not delete object, &#39;unnamed&#39;, during its event handler!<br>QObject: Do not delete object, &#39;unnamed&#39;, during its event handler!<br><br>etc., a few times per second.  the app seems to work, but that still bothers me. i want it to be Done Right.<br>
<br>i&#39;m using pyqt 4.3 and python 2.5 on windows xp.<br><br>