cpython: 74e9f94d8440 (original) (raw)
Mercurial > cpython
changeset 70989:74e9f94d8440 3.2
#11669: rephrase footnote in the Compound Statements page. [#11669]
Ezio Melotti ezio.melotti@gmail.com | |
---|---|
date | Sun, 26 Jun 2011 11:25:28 +0300 |
parents | 4f936d99d9ab |
children | a7099a3b5e5f bb27baa1124a |
files | Doc/reference/compound_stmts.rst |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-)[+] [-] Doc/reference/compound_stmts.rst 5 |
line wrap: on
line diff
--- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -615,8 +615,9 @@ can be used to create instance variables .. 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