A modification of @PierrePierre's answer:
In Python:
with open("foo.txt", "w") as f:
f.write("abc")
f.close() is called automatically whether an exception were raised or not.
In general it can be done using contextlib.closing, from the documenation:
closing(thing): return a context manager that closes thing upon completion of the block. This is basically equivalent to:from contextlib import contextmanager @contextmanager def closing(thing): try: yield thing finally: thing.close()And lets you write code like this:
from __future__ import with_statement # required for python version < 2.6 from contextlib import closing import urllib with closing(urllib.urlopen('http://www.python.org')) as page: for line in page: print linewithout needing to explicitly close page. Even if an error occurs, page.close() will be called when the with block is exited.
