We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
except
1 parent e6b239b commit 975c253Copy full SHA for 975c253
docs/api.rst
@@ -912,6 +912,8 @@ Exception-handling
912
``except ETYPE as VAR:``
913
- ``[VAR [ETYPE1 ETYPE2 …]]`` to catch any of the named types and bind it to
914
``VAR``, like Python's ``except ETYPE1, ETYPE2, … as VAR:``
915
+ - ``[[]]`` or ``[VAR []]`` to catch no exceptions, like Python's
916
+ ``except ():``.
917
918
The return value of ``try`` is the last form evaluated among the main body,
919
``except`` forms, ``except*`` forms, and ``else``.
0 commit comments