Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
ControlFlowInTryExceptFinally.py
blob: 40152671fb741be83d4a2e0eb313c50ce3d5c35d [
file
] [
log
] [
blame
]
def
foo1
():
a
=
1
try
:
for
i
in
range
(
10
):
pass
except
Exception
:
pass
finally
:
b
=
a
#pass
def
foo2
():
a
=
1
try
:
for
i
in
range
(
10
):
pass
except
Exception
:
c
=
a
#pass
finally
:
b
=
a
#pass