Futures and the "with" Statement
There's a special module in Python called __future__. Some new language features end up in this module for testing, and to use them you have to explicitly import them from here. One such feature which is a favorite of mine is the with statement, which is currently present in __future__ in version 2.5, but are part of the language in the 2.6 and 3.0 versions.
The reason it is in __future__ is because it makes both with and as keywords, which could break existing code.
I have used the "with" statement in 2.5 a lot because I think it's a very useful construct, here is a quick demo:
from __future__ import with_statement
with open('foo.txt', 'w') as f:
f.write('hello!')
What's happening here behind the scenes, is that the "with" statement calls the special __enter__ and __exit__ methods on the file object. Exception details are also passed to __exit__ if any exception was raised from the with statement body, allowing for exception handling to happen there.
What this does for you in this particular case is that it guarantees that the file is closed when execution falls out of scope of the with statement's body, regardless if that occurs naturally or whether an exception was thrown. It is basically a way of abstracting away common error-handling code.
Other common use cases for this include locking with threads and database transactions.
For more information on how to use this and how to implement your own with statement compatible objects read PEP 343.