micropython/tests/bytecode/mp-tests/class6.py

8 wiersze
89 B
Python
Czysty Zwykły widok Historia

2014-02-05 00:51:47 +00:00
class A:
def f(self):
pass
class B(A):
def f(self):
super().f()