mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +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
|