What\'s the equivalent of this in IronPython? Is it just a try-finally block?
using (var something = new ClassThatImp
IronPython supports using IDisposable with with statement, so you can write something like this:
IDisposable
with
with ClassThatImplementsIDisposable() as something: pass