aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_640.py
blob: 4b19bb45871fb904d76b5f7a060d90bf8747ad9f (plain)
1
2
3
4
5
6
7
8
9
10
11
import sys
from PySide.QtGui import *
import unittest

class Bug640(unittest.TestCase):
    def testIt(self):
        option = QStyleOptionGraphicsItem()
        a = option.state # crash!?

if __name__ == "__main__":
   unittest.main()