aboutsummaryrefslogtreecommitdiff
path: root/Doc/reference
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-11 09:22:04 -0700
committerGitHub <noreply@github.com>2022-10-11 09:22:04 -0700
commit9b12084aca1a2072f0333dbc562e52d8dc0235bd (patch)
tree1c28ebd9470e9714abf13e19bc4b2037ee590183 /Doc/reference
parent9d44ca51830ea1ead1e6e5641f9dc22fa108e2dc (diff)
downloadcpython3-9b12084aca1a2072f0333dbc562e52d8dc0235bd.tar.gz
gh-98172: Fix formatting in `except*` docs (GH-98173)
(cherry picked from commit 5ecf961640192a2192383aa20e1e93dcdf23c9b6) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/compound_stmts.rst23
1 files changed, 11 insertions, 12 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index d914686c0a..8963481836 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -363,18 +363,17 @@ one :keyword:`!except*` clause, the first that matches it. ::
+-+---------------- 1 ----------------
| ValueError: 1
+------------------------------------
- >>>
-
- Any remaining exceptions that were not handled by any :keyword:`!except*`
- clause are re-raised at the end, combined into an exception group along with
- all exceptions that were raised from within :keyword:`!except*` clauses.
-
- An :keyword:`!except*` clause must have a matching type,
- and this type cannot be a subclass of :exc:`BaseExceptionGroup`.
- It is not possible to mix :keyword:`except` and :keyword:`!except*`
- in the same :keyword:`try`.
- :keyword:`break`, :keyword:`continue` and :keyword:`return`
- cannot appear in an :keyword:`!except*` clause.
+
+Any remaining exceptions that were not handled by any :keyword:`!except*`
+clause are re-raised at the end, combined into an exception group along with
+all exceptions that were raised from within :keyword:`!except*` clauses.
+
+An :keyword:`!except*` clause must have a matching type,
+and this type cannot be a subclass of :exc:`BaseExceptionGroup`.
+It is not possible to mix :keyword:`except` and :keyword:`!except*`
+in the same :keyword:`try`.
+:keyword:`break`, :keyword:`continue` and :keyword:`return`
+cannot appear in an :keyword:`!except*` clause.
.. index::