[Python-checkins] r45979 - python/branches/release24-maint/Doc/ref/ref7.tex

george.yoshida python-checkins at python.org
Fri May 12 19:26:56 CEST 2006


Author: george.yoshida
Date: Fri May 12 19:26:56 2006
New Revision: 45979

Modified:
   python/branches/release24-maint/Doc/ref/ref7.tex
Log:
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.
(backport r45978)


Modified: python/branches/release24-maint/Doc/ref/ref7.tex
==============================================================================
--- python/branches/release24-maint/Doc/ref/ref7.tex	(original)
+++ python/branches/release24-maint/Doc/ref/ref7.tex	Fri May 12 19:26:56 2006
@@ -284,11 +284,8 @@
 \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


More information about the Python-checkins mailing list