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