https://github.com/python/cpython/commit/500abc41e813ed2c7d9ca1f2e1a8a761fdeb537d commit: 500abc41e813ed2c7d9ca1f2e1a8a761fdeb537d branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-11T12:14:33+03:00 summary:
[3.14] Docs: Small clarity change for ``except*`` (GH-121073) (#137494) Co-authored-by: Greg Stein <[email protected]> Co-authored-by: Adam Turner <[email protected]> files: M Doc/reference/compound_stmts.rst diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 41ab22b3ee0930..278ef1d4c4f435 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -386,7 +386,7 @@ have ambiguous semantics. It is not possible to mix :keyword:`except` and :keyword:`!except*` in the same :keyword:`try`. -:keyword:`break`, :keyword:`continue` and :keyword:`return` +The :keyword:`break`, :keyword:`continue`, and :keyword:`return` statements cannot appear in an :keyword:`!except*` clause. _______________________________________________ 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]
