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

pull/318/head
Damien George 2014-02-22 19:27:44 +00:00
commit 9982f2795d
1 zmienionych plików z 13 dodań i 0 usunięć

Wyświetl plik

@ -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()