Merge branch 'master' of github.com:micropython/micropython

This commit is contained in:
Damien George 2014-02-22 19:27:44 +00:00
commit 9982f2795d

View File

@ -0,0 +1,13 @@
class Base:
def meth(self):
print("in Base meth")
class Sub(Base):
def meth(self):
print("in Sub meth")
return super().meth()
a = Sub()
a.meth()