diff --git a/Objects/unionobject.c b/Objects/unionobject.c index ea4aed86f839eed..54cdedae4d92c98 100644 --- a/Objects/unionobject.c +++ b/Objects/unionobject.c @@ -445,7 +445,7 @@ union_reduce(PyObject *self, PyObject *Py_UNUSED(ignored)) return NULL; } - return Py_BuildValue("O(O)", from_args, alias->args); + return Py_BuildValue("N(O)", from_args, alias->args); } static PyMemberDef union_members[] = {