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