A
aaabbb16
Test.py
#!/usr/bin/python
from my_lib import my_function
class my_class(my_function.name):
def __initial__(self, name);
pass
def test():
print "this is a test"
If __name__ == '__maim__':
my_class.main()
---------------------------------------------------
my_lib.py
class my_function()
........
.........
Can anyone finish above code and let me try to understand
Class inheritance?
TIA.
-david
#!/usr/bin/python
from my_lib import my_function
class my_class(my_function.name):
def __initial__(self, name);
pass
def test():
print "this is a test"
If __name__ == '__maim__':
my_class.main()
---------------------------------------------------
my_lib.py
class my_function()
........
.........
Can anyone finish above code and let me try to understand
Class inheritance?
TIA.
-david