mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
7 lines
162 B
Python
7 lines
162 B
Python
class A:
|
|
def foo(self, a, b, /, c, d, *, e, f):
|
|
pass
|
|
|
|
class B(A):
|
|
def foo(self, a, b, /, c, d, *, e, f):
|
|
super().foo(a, b, c, d, e=e, f=f) |