]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Duplicated description about the illegal continue usage can be found in nearly the...
authorGeorge Yoshida <dynkin@gmail.com>
Fri, 12 May 2006 17:26:56 +0000 (17:26 +0000)
committerGeorge Yoshida <dynkin@gmail.com>
Fri, 12 May 2006 17:26:56 +0000 (17:26 +0000)
They are same, so keep the original one and remove the later-added one.
(backport r45978)

Doc/ref/ref7.tex

index 86892aeae1ce670637c62fbe700f38367a6dbd27..63b434cf5c8c799c543a9cb04c83519a4e695c87 100644 (file)
@@ -284,11 +284,8 @@ The \keyword{try}...\keyword{finally} form specifies a `cleanup' handler.  The
 \keyword{finally} clause is executed, and then the saved exception is
 re-raised.  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