Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
copyPaste
/
InnerToOuterFunction.src.py
blob: 2d1d3224ad1ea86db18b00e17b153d3a98c8fa5a [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
# original function # this is line 1 of the code.
2
def
foo
():
3
print
'f00'
4
<
selection
>
def
bar
(
num
):
5
for
_
in
range
(
num
):
6
print
'bar'
7
bar
(
7
)</
selection
><
caret
>
8
9
10