We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afbb038 commit 8cfa980Copy full SHA for 8cfa980
1 file changed
Objects/unionobject.c
@@ -28,6 +28,7 @@ union_traverse(PyObject *self, visitproc visit, void *arg)
28
{
29
unionobject *alias = (unionobject *)self;
30
Py_VISIT(alias->args);
31
+ Py_VISIT(alias->parameters);
32
return 0;
33
}
34
0 commit comments