mirror of https://github.com/python/cpython
Small code cleanup.
This commit is contained in:
parent
66f91ea966
commit
6e3e415886
|
@ -2362,10 +2362,8 @@ permutations_dealloc(permutationsobject *po)
|
||||||
static int
|
static int
|
||||||
permutations_traverse(permutationsobject *po, visitproc visit, void *arg)
|
permutations_traverse(permutationsobject *po, visitproc visit, void *arg)
|
||||||
{
|
{
|
||||||
if (po->pool != NULL)
|
Py_VISIT(po->pool);
|
||||||
Py_VISIT(po->pool);
|
Py_VISIT(po->result);
|
||||||
if (po->result != NULL)
|
|
||||||
Py_VISIT(po->result);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue