[3.13] gh-126664: Use else instead of finally in "The with statement" documentation. (GH-126665) (#126670)

gh-126664: Use `else` instead of `finally` in "The with statement" documentation. (GH-126665)
(cherry picked from commit 25257d61cf)

Co-authored-by: vivodi <103735539+vivodi@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2024-11-11 07:54:26 +01:00 committed by GitHub
parent 387b00d43d
commit 47748758e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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::