mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
14 lines
165 B
Python
14 lines
165 B
Python
class MyClass(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def foo(self):
|
|
pass
|
|
|
|
@staticmethod
|
|
def bar():
|
|
pass
|
|
|
|
|
|
a = MyClass()
|
|
a.<caret> |