This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author iritkatriel
Recipients iritkatriel
Date 2021-12-16.22:36:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639694209.93.0.209402666532.issue46107@roundup.psfhosted.org>
In-reply-to
Content
>>> e = ExceptionGroup("eg", [ValueError(1), TypeError(2)])
>>> e.__note__ = "a note"
>>> e.split(ValueError)
(ExceptionGroup('eg', [ValueError(1)]), ExceptionGroup('eg', [TypeError(2)]))
>>> e.split(ValueError)[0].__note__
>>> e.subgroup(ValueError).__note__
History
Date User Action Args
2021-12-16 22:36:49iritkatrielsetrecipients: + iritkatriel
2021-12-16 22:36:49iritkatrielsetmessageid: <1639694209.93.0.209402666532.issue46107@roundup.psfhosted.org>
2021-12-16 22:36:49iritkatriellinkissue46107 messages
2021-12-16 22:36:49iritkatrielcreate