PySide Bugzilla Closed for New Bugs

PySide is now a Qt Add-on and uses the Qt Project's JIRA Bug Tracker instead of this Bugzilla instance. This Bugzilla is left for reference purposes.

Bug 433 - Crash on exit in QtGui with QGraphicsView
: Crash on exit in QtGui with QGraphicsView
Status: CLOSED DUPLICATE of bug 394
Product: PySide
Classification: Unclassified
Component: QtGui
: HEAD
: Macintosh Mac OS
: P3 critical
Assigned To: renato filho
:
:
:
  Show dependency treegraph
 
Reported: 2010-10-22 16:30 EEST by Daniel Ashbrook
Modified: 2010-11-25 17:53 EET (History)
8 users (show)

See Also:


Attachments
Crash log (27.29 KB, text/plain)
2010-10-22 16:30 EEST, Daniel Ashbrook
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Daniel Ashbrook 2010-10-22 16:30:46 EEST
Created attachment 124 [details]
Crash log

PySide compiled from git source on 10/19. Running on Mac OS X 10.6.4.

The following code:


from PySide import QtCore, QtGui
import sys

class Test(QtGui.QGraphicsView):
    def __init__(self, parent=None):
        super(Test, self).__init__(parent)
        self.s = QtGui.QGraphicsScene()
        self.setScene(self.s)

a = QtGui.QApplication(sys.argv)
t = Test()
t.show()
sys.exit(a.exec_())


produces a crash in QtGui on exit. Crash log is attached.
Comment 1 Hugo Parente Lima 2010-10-22 18:17:44 EEST

*** This bug has been marked as a duplicate of bug 426 ***
Comment 2 Hugo Parente Lima 2010-10-22 18:22:54 EEST

*** This bug has been marked as a duplicate of bug 394 ***
Comment 3 Hugo Parente Lima 2010-11-25 17:53:41 EET
Released on version 1.0.0~beta1