Files
openide/python/testData/refactoring/extractmethod/NameCollisionSuperClass.before.py
2012-05-22 22:23:35 +04:00

8 lines
117 B
Python

class A:
def hello(self):
pass
class B(A):
def foo(self):
<selection>print("Hello")</selection>