mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 00:44:37 +07:00
8 lines
143 B
Python
8 lines
143 B
Python
status = None
|
|
try:
|
|
status = open('/proc/self/status', 'r')
|
|
finally:
|
|
if status is not None:
|
|
print('opened: %r' % status)
|
|
status.close()
|