What\'s the equivalent of this in IronPython? Is it just a try-finally block?
using (var something = new ClassThatImp
There is the with statement: http://www.ironpythoninaction.com/magic-methods.html#context-managers-and-the-with-statement
with
with open(filename) as handle: data = handle.read() ...