mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 16:02:32 +07:00
7 lines
100 B
Python
7 lines
100 B
Python
class A:
|
|
def foo(self):
|
|
pass
|
|
|
|
@classmethod
|
|
def pop(cls):
|
|
print cls.foo() |