Re: interaction of 'with' and 'yield'

2007-07-31 Thread Jean-Paul Calderone
On Tue, 31 Jul 2007 07:34:09 -0400, Neal Becker <[EMAIL PROTECTED]> wrote: >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' s

interaction of 'with' and 'yield'

2007-07-31 Thread Neal Becker
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 rele