Skip to content

Commit

Permalink
Revert "pythongh-126664: Use else instead of finally in "The with…
Browse files Browse the repository at this point in the history
… statement" documentation. (pythonGH-126665)"

This reverts commit 25257d6.
  • Loading branch information
gpshead committed Dec 22, 2024
1 parent 8d9f52a commit 4a18fca
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Doc/reference/compound_stmts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -534,15 +534,18 @@ 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
else:
exit(manager, None, None, None)
finally:
if not hit_except:
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 4a18fca

Please sign in to comment.