Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
)
...