Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
UseAfterWithAndRaise.py
blob: f49b37e01a5cb291ee953bf7400479c0461e84ec [
file
] [
log
] [
blame
]
def
f
(
y
,
c
,
xs
):
if
c
:
raise
Exception
()
for
x
in
xs
:
with
y
:
pass
print
(
x
)
#pass