show/hide this revision's text 4 deleted 21 characters in body

Futures and the "With" 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" with statement, which is currently present in __future__ in version 2.5, but will be are part of the language in the soon-to-be-released 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" 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" with statement compatible objects read PEP 343.

show/hide this revision's text 3 Removed suggestion that VAR's scope is only in the with statement since it's inaccurate

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 will be part of the language in the soon-to-be-released 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. Also the variable (in this case f) is limited in scope to the body of the "with" statement. 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

show/hide this revision's text 2 broken links

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 will be part of the language in the soon-to-be-released 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. Also the variable (in this case f) is limited in scope to the body of the "with" statement. 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

    Post Made Community Wiki by Community
show/hide this revision's text 1