mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: fd44fa8ca8a0f3eed2b710a65225979569023d3f
10 lines
160 B
Python
10 lines
160 B
Python
class A:
|
|
@staticmethod
|
|
def foo(cls):
|
|
cls.k = 3
|
|
|
|
class B(A):
|
|
@staticmethod
|
|
def foo(cls):
|
|
<selection>super().foo(cls)</selection>
|