https://github.com/python/cpython/commit/47748758e73b50dcb4f8afaf357938c71268fe51 commit: 47748758e73b50dcb4f8afaf357938c71268fe51 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: gpshead <[email protected]> date: 2024-11-11T06:54:26Z summary:
[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 25257d61cfccc3b4189f96390a5c4db73fd5302c) Co-authored-by: vivodi <[email protected]> files: M Doc/reference/compound_stmts.rst diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index c7e43ef773907a..69c47686dd6784 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -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:: _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
