aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_882.py
blob: 88f769cbe55d21bef5e11043188efd5bac99d1f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from PySide.QtGui import *
from PySide.QtCore import *
import os

if "DISPLAY" in os.environ:
    del os.environ["DISPLAY"]

app = QApplication([], False)
QTimer.singleShot(0, app.quit)
app.exec_()