Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
resources
/
intentionDescriptions
/
PyConvertLambdaToFunctionIntention
/
after.py.template
blob: 4429ea5a83617f4bbc6d998b624a655c591b35e9 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
def
func2
(
x
,
y
):
2
return
(
x
+
y
)/
y
3
4
def
func
(
seq
):
5
...
6
newlist
=
reduce
(
func2
,
seq
)
7
...