Files
2019-07-08 18:05:36 +03:00

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()