git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8722 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
239 B
Python
16 lines
239 B
Python
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
|