mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
7 lines
169 B
Python
7 lines
169 B
Python
class A:
|
|
def __init__(self, *, kw_only):
|
|
pass
|
|
|
|
class B(A):
|
|
def __init__(self, *args, another_kw_only, kw_only):
|
|
super().__init__(kw_only=kw_only) |