Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
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