Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
UseAfterWithAndRaise.py
blob: f49b37e01a5cb291ee953bf7400479c0461e84ec [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
def
f
(
y
,
c
,
xs
):
2
if
c
:
3
raise
Exception
()
4
for
x
in
xs
:
5
with
y
:
6
pass
7
print
(
x
)
#pass