mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
8 lines
136 B
Python
8 lines
136 B
Python
class A:
|
|
def f1(self, *, a = 1):
|
|
pass
|
|
|
|
class B(A):
|
|
def f1(self, *, a=1):
|
|
<selection>super().f1(a=a)</selection>
|