Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
copyPaste
/
InnerToOuterFunction.after.py
blob: a47bcea0e8e3fbe3ceb0f401a7bb832f3d0dd4aa [
file
] [
log
] [
blame
]
# original function # this is line 1 of the code.
def
foo
():
print
'f00'
def
bar
(
num
):
for
_
in
range
(
num
):
print
'bar'
bar
(
7
)
def
bar
(
num
):
for
_
in
range
(
num
):
print
'bar'
bar
(
7
)