Files
openide/python/testData/refactoring/extractmethod/MethodInnerFunc.before.py
Mikhail Golubev 0ae7ade582 PY-34626 Make test names a bit clearer
GitOrigin-RevId: 0311ba9c7085725a918472946312dde164f8541c
2024-08-26 10:38:00 +00:00

8 lines
132 B
Python

class Test:
x = 5
def method(self):
def func():
<selection>y = self.x</selection>
return y