mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
10 lines
154 B
Python
10 lines
154 B
Python
class A:
|
|
@staticmethod
|
|
def foo(cls):
|
|
cls.k = 3
|
|
|
|
class B(A):
|
|
@staticmethod
|
|
def foo(cls):
|
|
<selection>A.foo(cls)</selection>
|