]> granicus.if.org Git - python/commitdiff
#11669: rephrase footnote in the Compound Statements page.
authorEzio Melotti <ezio.melotti@gmail.com>
Sun, 26 Jun 2011 08:25:28 +0000 (11:25 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Sun, 26 Jun 2011 08:25:28 +0000 (11:25 +0300)
Doc/reference/compound_stmts.rst

index 9dfa31f1a60dbeec8ba2bc5f65ef22669d792139..7015a7fde8137a42d8db9c921921a9d35a105878 100644 (file)
@@ -562,8 +562,9 @@ which is then bound to the class name.
 
 .. 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 :keyword:`break`