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