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