Files
openide/python/python-psi-impl/resources/intentionDescriptions/PyConvertLambdaToFunctionIntention/after.py.template
Dmitry Trofimov f0399e1662 Decouple Python intentions
GitOrigin-RevId: e87aa7f8fde189ff2a48793879e27617ff6297e7
2020-05-01 18:44:38 +00:00

8 lines
101 B
Plaintext

def func2(x, y):
return (x+y)/y
def func(seq):
...
newlist = reduce(func2, seq)
...