I came across the Python with statement for the first time today. I\'ve been using Python lightly for several months and didn\'t even know of its existence! G
with
See PEP 343 - The 'with' statement, there is an example section at the end.
... new statement "with" to the Python language to make it possible to factor out standard uses of try/finally statements.