Files

6 lines
107 B
Python

from __future__ import with_statement
with open(__file__, 'r') as f:
print(f)
with f:
pass