mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
9 lines
102 B
Python
9 lines
102 B
Python
class B:
|
|
def foo(self, x=1):
|
|
pass
|
|
|
|
|
|
class C(B):
|
|
def foo(self, **kwargs):
|
|
pass
|