mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 3e99835432e2b5382c257bbe4375aacb94da16bc
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()
|