Hello<br>If I try to reimplement the method drawItems in a QGraphicsScene subclass, the program segfaults. Is this a bug in PyQt? I am by the way using PyQt 4.1.1 (self-compiled) and Qt 4.2.0 (Ubuntu). I&#39;ve included a sample program which exhibits the behaviour.
<br><br>Arve<br><br><br>from PyQt4.QtGui import *<br><br>class _GraphicsScene(QGraphicsScene):<br>&nbsp;&nbsp;&nbsp; def __init__(self, parent):<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QGraphicsScene.__init__(self, parent<br><br>&nbsp;&nbsp;&nbsp; def drawItems(self, *args):<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;&quot;&quot; Reimplement in order to notify observers of draw event. &quot;&quot;&quot;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; QGraphicsScene.drawItems(self, *args)<br><br>import sys, os.path<br>app = QApplication([])<br>w = QGraphicsView()<br>scene = _GraphicsScene(w)<br>w.setScene(scene)<br>w.show()<br>app.exec_()<br>