Furthermore, none of the lines print unless I convert ITest to a
concrete class, but then the getName methods return the concrete
implementation's string.
Has anyone successfully had this situation work, and how did you do
it?
Thanks in advance
Code:
===========
import ITest
class Tada(ITest):
def __init__(self):
print "In Init"
def getName(self):
print "In getName"
return "Joe Schmoe"
def test1():
t = Tada()
print t.getName()
print "Hello, World"
return t