summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2022-01-24 21:47:40 (GMT)
committerGitHub <noreply@github.com>2022-01-24 21:47:40 (GMT)
commit573b54515740ce51dcf2402038a9d953aa6c317f (patch)
tree04cca4e1c9d3b70355f6857cef97cd0b4908a69c /Objects
parent1c705fda8f9902906edd26d46acb0433b0b098e1 (diff)
downloadcpython-573b54515740ce51dcf2402038a9d953aa6c317f.zip
cpython-573b54515740ce51dcf2402038a9d953aa6c317f.tar.gz
cpython-573b54515740ce51dcf2402038a9d953aa6c317f.tar.bz2
bpo-46431: improve error message on invalid calls to BaseExceptionGroup.__new__ (GH-30854)
Diffstat (limited to 'Objects')
-rw-r--r--Objects/exceptions.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c
index 065503f..d8bfb31 100644
--- a/Objects/exceptions.c
+++ b/Objects/exceptions.c
@@ -685,7 +685,10 @@ BaseExceptionGroup_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
PyObject *message = NULL;
PyObject *exceptions = NULL;
- if (!PyArg_ParseTuple(args, "UO", &message, &exceptions)) {
+ if (!PyArg_ParseTuple(args,
+ "UO:BaseExceptionGroup.__new__",
+ &message,
+ &exceptions)) {
return NULL;
}