#11669: rephrase footnote in the Compound Statements page.

This commit is contained in:
Ezio Melotti 2011-06-26 11:25:28 +03:00
parent 54cc5fd72d
commit fc3db8a91e
1 changed files with 3 additions and 2 deletions

View File

@ -615,8 +615,9 @@ can be used to create instance variables with different implementation details.
.. rubric:: Footnotes
.. [#] 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:`finally` clause which happens to raise another
exception. That new exception causes the old one to be lost.
.. [#] Currently, control "flows off the end" except in the case of an exception
or the execution of a :keyword:`return`, :keyword:`continue`, or