Skip to content

Commit

Permalink
[3.12] pythongh-119287: clarify doc on BaseExceptionGroup.derive and …
Browse files Browse the repository at this point in the history
…link to it from contextlib.suppress (pythonGH-119657) (python#120106)

pythongh-119287: clarify doc on BaseExceptionGroup.derive and link to it from contextlib.suppress (pythonGH-119657)
(cherry picked from commit 5c02ea8)

Co-authored-by: Irit Katriel <[email protected]>
  • Loading branch information
miss-islington and iritkatriel authored Jun 5, 2024
1 parent 8d19977 commit 376c734
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Doc/library/contextlib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@ Functions and classes provided:

If the code within the :keyword:`!with` block raises a
:exc:`BaseExceptionGroup`, suppressed exceptions are removed from the
group. If any exceptions in the group are not suppressed, a group containing them is re-raised.
group. Any exceptions of the group which are not suppressed are re-raised in
a new group which is created using the original group's :meth:`~BaseExceptionGroup.derive`
method.

.. versionadded:: 3.4

Expand Down
3 changes: 2 additions & 1 deletion Doc/library/exceptions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,8 @@ their subgroups based on the types of the contained exceptions.
Returns an exception group with the same :attr:`message`, but which
wraps the exceptions in ``excs``.

This method is used by :meth:`subgroup` and :meth:`split`. A
This method is used by :meth:`subgroup` and :meth:`split`, which
are used in various contexts to break up an exception group. A
subclass needs to override it in order to make :meth:`subgroup`
and :meth:`split` return instances of the subclass rather
than :exc:`ExceptionGroup`.
Expand Down

0 comments on commit 376c734

Please sign in to comment.