classification
Title: Implement PEP 654: Exception Groups
Type: enhancement Stage: patch review
Components: Documentation, Interpreter Core, Library (Lib) Versions: Python 3.11
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: iritkatriel Nosy List: iritkatriel
Priority: normal Keywords: patch

Created on 2021-09-26 12:07 by iritkatriel, last changed 2021-10-25 10:24 by iritkatriel.

Pull Requests
URL Status Linked Edit
PR 28569 merged iritkatriel, 2021-09-26 14:32
PR 29207 open iritkatriel, 2021-10-25 10:24
Messages (2)
msg402661 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-09-26 14:37
We will implement Exception Groups and except* in a series of PRs:

1. Add the ExceptionGroup and BaseExceptionGroup classes
2. Update traceback rendering code (python and C) for exception groups.
3. Implement except*
4. Write documentation sections.
msg404837 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-10-22 23:13
New changeset f30ad65dbf3c6b1b5eec14dc954d65ef32327857 by Irit Katriel in branch 'main':
bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (GH-28569)
https://github.com/python/cpython/commit/f30ad65dbf3c6b1b5eec14dc954d65ef32327857
History
Date User Action Args
2021-10-25 10:24:56iritkatrielsetpull_requests: + pull_request27475
2021-10-22 23:13:50iritkatrielsetmessages: + msg404837
2021-09-26 21:13:14vstinnersettitle: Implement PEP 654 -> Implement PEP 654: Exception Groups
2021-09-26 14:37:29iritkatrielsetmessages: + msg402661
2021-09-26 14:32:29iritkatrielsetkeywords: + patch
stage: patch review
pull_requests: + pull_request26952
2021-09-26 12:07:11iritkatrielcreate