I'm wondering if a generator that is within a 'with' scope exits the 'with' when it encounters 'yield'.
I would like to use a generator to implement RAII without having to syntactically enclose the code in the 'with' scope, and I am hoping that the the yield does not exit the 'with' scope and release the resource. -- http://mail.python.org/mailman/listinfo/python-list