diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-10-04 03:37:29 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-10-04 03:37:29 (GMT) |
commit | 19f6b86955d84f949b17a33144d4c907746e2b84 (patch) | |
tree | 77ec3e4fe1a590516afa9ddb86ef1342d4557028 /Doc | |
parent | 178f9068c445aa4648c682658edb13b2bc48880d (diff) | |
download | cpython-19f6b86955d84f949b17a33144d4c907746e2b84.zip cpython-19f6b86955d84f949b17a33144d4c907746e2b84.tar.gz cpython-19f6b86955d84f949b17a33144d4c907746e2b84.tar.bz2 |
Armin caught this mistake in bug #973103.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref6.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex index 3e4b69e..f9ab90c 100644 --- a/Doc/ref/ref6.tex +++ b/Doc/ref/ref6.tex @@ -603,7 +603,7 @@ before really leaving the loop. \keyword{continue} may only occur syntactically nested in a \keyword{for} or \keyword{while} loop, but not nested in a function or class definition or -\keyword{try} statement within that loop.\footnote{It may +\keyword{finally} statement within that loop.\footnote{It may occur within an \keyword{except} or \keyword{else} clause. The restriction on occurring in the \keyword{try} clause is implementor's laziness and will eventually be lifted.} |