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

7 lines
143 B
Python

class Test:
a = 5
def method(self, b):
def func(c):
<selection>y = self.a + b * c</selection>
return y