Re: [Python-Dev] [Python-checkins] cpython (3.2): #11669: rephrase footnote in the Compound Statements page.

2011-06-26 Thread Nick Coghlan
On Mon, Jun 27, 2011 at 12:02 AM, Sandro Tosi wrote: > I gave my interpretation of the footnote at: > http://bugs.python.org/issue11669#msg139092 . Does this clarify it? No, because while there *are* ways a finally clause can kill an exception completely, reraising another exception is not really

Re: [Python-Dev] [Python-checkins] cpython (3.2): #11669: rephrase footnote in the Compound Statements page.

2011-06-26 Thread Sandro Tosi
Hi Nick, given I'm "guilty" for this patch, I'd reply :) On Sun, Jun 26, 2011 at 15:55, Nick Coghlan wrote: > On Sun, Jun 26, 2011 at 6:38 PM, ezio.melotti > wrote: >> -.. [#] The exception is propagated to the invocation stack only if there is >> no >> -   :keyword:`finally` clause that negate

Re: [Python-Dev] [Python-checkins] cpython (3.2): #11669: rephrase footnote in the Compound Statements page.

2011-06-26 Thread Nick Coghlan
On Sun, Jun 26, 2011 at 6:38 PM, ezio.melotti wrote: > -.. [#] The exception is propagated to the invocation stack only if there is > no > -   :keyword:`finally` clause that negates the exception. > +.. [#] The exception is propagated to the invocation stack unless > +   there is a :keyword:`fina