diff options
author | George Yoshida <dynkin@gmail.com> | 2006-05-12 17:25:26 (GMT) |
---|---|---|
committer | George Yoshida <dynkin@gmail.com> | 2006-05-12 17:25:26 (GMT) |
commit | 8f505aed4656144cd7a9368acd490d38006fcecd (patch) | |
tree | 5c25c90a0b8c4915f42d09e45e08e10562bbd8ea /Doc | |
parent | 77c176d5b561810fa1c87ca53fc8cce4a38553c3 (diff) | |
download | cpython-8f505aed4656144cd7a9368acd490d38006fcecd.zip cpython-8f505aed4656144cd7a9368acd490d38006fcecd.tar.gz cpython-8f505aed4656144cd7a9368acd490d38006fcecd.tar.bz2 |
Duplicated description about the illegal continue usage can be found in nearly the same place.
They are same, so keep the original one and remove the later-added one.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref7.tex | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex index ddabca0..0306079 100644 --- a/Doc/ref/ref7.tex +++ b/Doc/ref/ref7.tex @@ -287,11 +287,8 @@ and is not handled, the exception is temporarily saved. The it is re-raised at the end of the \keyword{finally} clause. If the \keyword{finally} clause raises another exception or executes a \keyword{return} or \keyword{break} statement, the saved -exception is lost. A \keyword{continue} statement is illegal in the -\keyword{finally} clause. (The reason is a problem with the current -implementation -- this restriction may be lifted in the future). The -exception information is not available to the program during execution of -the \keyword{finally} clause. +exception is lost. The exception information is not available to the +program during execution of the \keyword{finally} clause. \kwindex{finally} When a \keyword{return}, \keyword{break} or \keyword{continue} statement is |