2014-02-22 11:54:27 -05:00
|
|
|
class Base:
|
|
|
|
|
2014-04-19 14:54:06 -04:00
|
|
|
def __init__(self):
|
|
|
|
self.a = 1
|
|
|
|
|
2014-02-22 11:54:27 -05:00
|
|
|
def meth(self):
|
2014-04-19 14:54:06 -04:00
|
|
|
print("in Base meth", self.a)
|
2014-02-22 11:54:27 -05:00
|
|
|
|
|
|
|
class Sub(Base):
|
|
|
|
|
|
|
|
def meth(self):
|
|
|
|
print("in Sub meth")
|
|
|
|
return super().meth()
|
|
|
|
|
|
|
|
a = Sub()
|
|
|
|
a.meth()
|