mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 06:39:38 +07:00
13 lines
160 B
Python
13 lines
160 B
Python
class MyClass:
|
|
|
|
def another(self):
|
|
pass
|
|
|
|
|
|
inst = MyClass()
|
|
inst.another()
|
|
inst.another()
|
|
my_class = MyClass()
|
|
my_class.another()
|
|
my_class.another()
|