aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore/bug_656.py
blob: ba5617447090ff6c5e8476d541ae4531e24d8832 (plain)
1
2
3
4
5
6
7
8
9
from PySide.QtCore import *

class CoreApp(QCoreApplication):
    def __init__(self,*args):
        super(CoreApp,self).__init__(*args)
        # It shouldn't crash after the __init__ call

import sys
app = CoreApp(sys.argv)