Skip to content

Commit

Permalink
pythongh-126664: Use else instead of finally in "The with stateme…
Browse files Browse the repository at this point in the history
…nt" documentation. (pythonGH-126665)
  • Loading branch information
vivodi authored and picnixz committed Nov 19, 2024
1 parent 0c1a270 commit 371229e
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 371229e

Please sign in to comment.