mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
12 lines
185 B
Python
12 lines
185 B
Python
class MyClass:
|
|
def method(self):
|
|
self.another()
|
|
self.another()
|
|
|
|
def another(self):
|
|
pass
|
|
|
|
|
|
inst = MyClass()
|
|
MyClass.met<caret>hod(inst)
|
|
MyClass().method() |