Files
openide/python/testData/refactoring/extractmethod/MethodInnerFuncRecursive.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
133 B
Python

class Test:
def method(self, a):
def func(b):
<selection>x = self.method(b)</selection>
return x