[issue46155] Implement ExceptionGroup __new__

2021-12-22 Thread Irit Katriel
Irit Katriel added the comment: False alarm, this is already as it should be. Me needs a couple of weeks offline is all it is. -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker

[issue46155] Implement ExceptionGroup __new__

2021-12-22 Thread Irit Katriel
Change by Irit Katriel : -- assignee: -> iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue46155] Implement ExceptionGroup __new__

2021-12-22 Thread Irit Katriel
New submission from Irit Katriel : Currently ExceptionGroup inherits __new__ from BaseExceptionGroup, it should have its own __new__ implementation which raises a TypeError if any contained exception is not an Exception subclass. -- messages: 409047 nosy: gvanrossum, iritkatriel, ysel