Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
codeInsight
/
controlflow
/
tryexceptelsefinally.py
blob: aff0bf097dcc71c1474e248c0f414910a675bd4f [
file
] [
log
] [
blame
]
d
=
dict
()
try
:
v
=
d
[
'key'
]
except
KeyError
:
print
'element not found'
else
:
print
'element value {0}'
.
format
(
v
)
finally
:
print
'excuting finally clause'