summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/director_thread_runme.py
blob: e66817e173f3d4a7c901d0f51d8495d09624f98a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from director_thread import Foo

class Derived(Foo) :
    def __init__(self):
        Foo.__init__(self)

    def do_foo(self):
        self.val = self.val - 1


d = Derived()
d.run()

if d.val >= 0:
    print d.val
    raise RuntimeError