aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_429.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtGui/bug_429.py')
-rw-r--r--tests/QtGui/bug_429.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/QtGui/bug_429.py b/tests/QtGui/bug_429.py
new file mode 100644
index 000000000..f49d24474
--- /dev/null
+++ b/tests/QtGui/bug_429.py
@@ -0,0 +1,10 @@
+from PySide.QtCore import *
+from PySide.QtGui import *
+import sys
+
+app = QApplication(sys.argv)
+scene = QGraphicsScene()
+label = QLabel("hello world")
+label.show()
+QTimer.singleShot(0, label.close)
+exit(app.exec_())