Signed-off-by: Paulo Alcantara <paulo.alcantara@openbossa.org>
Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>
          Marcelo Lira <marcelo.lira@openbossa.org>
This commit is contained in:
Paulo Alcantara 2011-10-31 13:38:19 -03:00 committed by Hugo Parente Lima
commit 64ffc4f61b
3 changed files with 13 additions and 1 deletions

View file

@ -24,6 +24,7 @@ PYSIDE_TEST(bug_953.py)
PYSIDE_TEST(bug_987.py)
PYSIDE_TEST(bug_994.py)
PYSIDE_TEST(bug_1019.py)
PYSIDE_TEST(bug_1031.py)
PYSIDE_TEST(blocking_signals_test.py)
PYSIDE_TEST(classinfo_test.py)
PYSIDE_TEST(child_event_test.py)

5
tests/QtCore/bug_1031.py Normal file
View file

@ -0,0 +1,5 @@
from PySide.QtCore import QStateMachine, QState
mach = QStateMachine()
state = QState(mach)
print(state.machine())