git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7147 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
202 B
Python
11 lines
202 B
Python
from director_thread import Foo
|
|
|
|
class Derived(Foo) :
|
|
def __init__(self):
|
|
Foo.__init__(self)
|
|
print "too"
|
|
def do_foo(self):
|
|
print "at drived class"
|
|
|
|
d = Derived()
|
|
d.run()
|