Skip to content

Commit 8cfa980

Browse files
committed
Add parameters to union_traverse
1 parent afbb038 commit 8cfa980

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Objects/unionobject.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ union_traverse(PyObject *self, visitproc visit, void *arg)
2828
{
2929
unionobject *alias = (unionobject *)self;
3030
Py_VISIT(alias->args);
31+
Py_VISIT(alias->parameters);
3132
return 0;
3233
}
3334

0 commit comments

Comments
 (0)