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

6 lines
121 B
Python

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