Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
DefinedInTryAndExcept.py
blob: 02ba98741f5d954f2dbd3032dba5b756abfe972e [
file
] [
log
] [
blame
]
def
f
(
g
):
try
:
x
=
g
()
except
Exception
:
x
=
g
()
finally
:
pass
print
(
x
)
#pass