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