Skip to content

Commit

Permalink
pythongh-126664: revert: Use else instead of finally in docs expl…
Browse files Browse the repository at this point in the history
…aining "with" (pythonGH-128169)

Revert "pythongh-126664: Use `else` instead of `finally` in "The with statement" documentation. (pythonGH-126665)"

This reverts commit 25257d6.
(cherry picked from commit 228f275)

Co-authored-by: Gregory P. Smith <[email protected]>
  • Loading branch information
gpshead authored and miss-islington committed Dec 22, 2024
1 parent f65ac86 commit 2bb3be7
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 2bb3be7

Please sign in to comment.