Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Doc/reference/compound_stmts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,10 @@ stored in the :mod:`sys` module is reset to its previous value::
None


.. versionchanged:: 3.14
Parentheses are no longer required around a tuple of exception types.


.. index::
pair: keyword; except_star

Expand Down Expand Up @@ -389,6 +393,8 @@ in the same :keyword:`try`.
:keyword:`break`, :keyword:`continue` and :keyword:`return`
cannot appear in an :keyword:`!except*` clause.

.. versionchanged:: 3.14
Parentheses are no longer required around a tuple of exception types.

.. index::
pair: keyword; else
Expand Down
Loading