Use identity instead of equality when looking for referrers. Fixes #485781.
This commit is contained in:
parent
1cec7fab1d
commit
c8fe77bd4c
|
@ -650,9 +650,10 @@ gc_get_thresh(PyObject *self, PyObject *args)
|
|||
static int
|
||||
referrersvisit(PyObject* obj, PyObject *objs)
|
||||
{
|
||||
if (PySequence_Contains(objs, obj)) {
|
||||
return 1;
|
||||
}
|
||||
int i;
|
||||
for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
|
||||
if (PyTuple_GET_ITEM(objs, i) == obj)
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue