**Futures and the "With" Statement**

There's a special module in Python called [`__future__`][1]. 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][2], which is currently present in [`__future__`][1] in version 2.5, but will be part of the language in the soon-to-be-released 2.6 and 3.0 versions.

The reason it is in [`__future__`][1] is because it makes both `with` and `as` keywords, which could break existing code.

I have used the ["with" statement][2] 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][2] 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][2]'s body, regardless if that occurs naturally or whether an exception was thrown. Also the variable (in this case `f`) is limited in scope to the body of the ["with" statement][2]. 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][2] compatible objects read [PEP 343][2]


  [1]: http://docs.python.org/lib/module-future.html
  [2]: http://www.python.org/dev/peps/pep-0343/