gh-141732: Fix ExceptionGroup repr changing when original exception sequence is mutated (#141736)

This commit is contained in:
dr-carlos 2025-12-08 07:34:04 +10:30 committed by GitHub
parent dc9f2385ed
commit ff2577f56e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 157 additions and 12 deletions

View file

@ -18,6 +18,7 @@ typedef struct {
PyException_HEAD
PyObject *msg;
PyObject *excs;
PyObject *excs_str;
} PyBaseExceptionGroupObject;
typedef struct {