Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
02cf98d65c798d368fcec43ed64a001d513bdd4f
/
.
/
python
/
testData
/
codeInsight
/
controlflow
/
trybreak.py
blob: 32dc0919d63d43a444c2fcb208e70c7bca057078 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
def
foo
():
2
try
:
3
for
i
in
bar
:
4
break
5
except
:
6
raise
Exception
()
7
return
3