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 7dca9a2 commit 5e57f48Copy full SHA for 5e57f48
src/lazy_object_proxy/cext.c
@@ -136,7 +136,7 @@ static int Proxy_traverse(ProxyObject *self,
136
{
137
Py_VISIT(self->dict);
138
Py_VISIT(self->wrapped);
139
-
+ Py_VISIT(self->factory);
140
return 0;
141
}
142
@@ -146,7 +146,7 @@ static int Proxy_clear(ProxyObject *self)
146
147
Py_CLEAR(self->dict);
148
Py_CLEAR(self->wrapped);
149
150
151
152
0 commit comments