Skip to content

Commit 4aba435

Browse files
authored
Point link in 8.4.4 (docs for finally) to try/else, instead of if/else
Fixes 138297
1 parent 7bca924 commit 4aba435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/reference/compound_stmts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ clauses.
417417

418418
If :keyword:`!finally` is present, it specifies a 'cleanup' handler. The
419419
:keyword:`try` clause is executed, including any :keyword:`except` and
420-
:keyword:`else` clauses. If an exception occurs in any of the clauses and is
420+
:keyword:`!else` clauses. If an exception occurs in any of the clauses and is
421421
not handled, the exception is temporarily saved. The :keyword:`!finally` clause
422422
is executed. If there is a saved exception it is re-raised at the end of the
423423
:keyword:`!finally` clause. If the :keyword:`!finally` clause raises another

0 commit comments

Comments
 (0)