Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
resources
/
intentionDescriptions
/
PyConvertLambdaToFunctionIntention
/
after.py.template
blob: 4429ea5a83617f4bbc6d998b624a655c591b35e9 [
file
] [
log
] [
blame
]
def
func2
(
x
,
y
):
return
(
x
+
y
)/
y
def
func
(
seq
):
...
newlist
=
reduce
(
func2
,
seq
)
...