Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
codeInsight
/
controlflow
/
tryfinally.py
blob: 8cf717cb001e7a6329fef2887fff241e8054ffe7 [
file
] [
log
] [
blame
]
status
=
None
try
:
status
=
open
(
'/proc/self/status'
,
'r'
)
finally
:
if
status
is
not
None
:
print
(
'opened: %r'
%
status
)
status
.
close
()