aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_429.py
blob: f49d244743512a06bc12a4404e8d61814c1a9e07 (plain)
1
2
3
4
5
6
7
8
9
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_())