Skip to content

Commit

Permalink
gh-126664: Use else instead of finally in "The with statement" do…
Browse files Browse the repository at this point in the history
…cumentation. (GH-126665)
  • Loading branch information
vivodi authored Nov 11, 2024
1 parent 5c488ca commit 25257d6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Doc/reference/compound_stmts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -534,18 +534,15 @@ is semantically equivalent to::
enter = type(manager).__enter__
exit = type(manager).__exit__
value = enter(manager)
hit_except = False

try:
TARGET = value
SUITE
except:
hit_except = True
if not exit(manager, *sys.exc_info()):
raise
finally:
if not hit_except:
exit(manager, None, None, None)
else:
exit(manager, None, None, None)

With more than one item, the context managers are processed as if multiple
:keyword:`with` statements were nested::
Expand Down

0 comments on commit 25257d6

Please sign in to comment.