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

Doc/ref/ref7.tex

index ddabca0048d9abe388d3f105dea5bdbef4046a72..0306079d09a67daeea7b724fc1bd2363e2a40d60 100644 (file)
@@ -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