aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_693.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_693.py')
-rw-r--r--tests/QtGui/bug_693.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/QtGui/bug_693.py b/tests/QtGui/bug_693.py
new file mode 100644
index 000000000..4bfbe7c7f
--- /dev/null
+++ b/tests/QtGui/bug_693.py
@@ -0,0 +1,31 @@
+
+from PySide.QtCore import *
+from PySide.QtGui import *
+import unittest
+
+class MyModel (QAbstractListModel):
+
+ stupidLine = QLine(0, 0, 10, 10)
+
+ def rowCount(self, parent):
+ return 1
+
+ def data(self, index, role):
+ return self.stupidLine
+
+class TestBug693(unittest.TestCase):
+ def testIt(self):
+ app = QApplication([])
+ model = MyModel()
+ view = QListView()
+ view.setModel(model)
+ view.show()
+
+ # This must NOT throw the exception:
+ # RuntimeError: Internal C++ object (PySide.QtCore.QLine) already deleted.
+ MyModel.stupidLine.isNull()
+
+
+
+if __name__ == "__main__":
+ unittest.main()