I stumbled upon the following bug, which is probably a pyqt bug that
did not exist in the previous version.
You should be able to reproduce it on an up-to-date ubuntu with
python-qt4 4.9.1-2ubuntu1
The following code generates a SEGV, because the destructor for app is called

import sys
from PyQt4 import QtGui
app = QtGui.QApplication(sys.argv)
view = QtGui.QFrame(None)
view.graphicsView = QtGui.QGraphicsView()
view.graphicsView.setScene(QtGui.QGraphicsScene())
_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to