mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
15 lines
225 B
Python
15 lines
225 B
Python
class A:
|
|
def meth_a1(self, name = {}):
|
|
pass
|
|
def meth_a2(self):
|
|
pass
|
|
|
|
class B(A):
|
|
def meth_b1(self):
|
|
pass
|
|
def meth_b2(self):
|
|
pass
|
|
|
|
class D(A):
|
|
def meth_d1(self):
|
|
pass |