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 gvanrossum, iritkatriel, petr.viktorin, yselivanov
Date 2022-01-24.16:41:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643042472.37.0.409882298297.issue46431@roundup.psfhosted.org>
In-reply-to
Content
This is the fix:

-    if (!PyArg_ParseTuple(args, "UO", &message, &exceptions)) {
+    if (!PyArg_ParseTuple(args,
+                          "UO:BaseExceptionGroup.__new__",
+                          &message,
+                          &exceptions)) {


Then we get

TypeError: BaseExceptionGroup.__new__() takes exactly 2 arguments (1 given)
History
Date User Action Args
2022-01-24 16:41:12iritkatrielsetrecipients: + iritkatriel, gvanrossum, petr.viktorin, yselivanov
2022-01-24 16:41:12iritkatrielsetmessageid: <1643042472.37.0.409882298297.issue46431@roundup.psfhosted.org>
2022-01-24 16:41:12iritkatriellinkissue46431 messages
2022-01-24 16:41:12iritkatrielcreate