mirror of
https://github.com/python/cpython.git
synced 2025-07-30 22:54:16 +00:00
Small code cleanup.
This commit is contained in:
parent
66f91ea966
commit
6e3e415886
1 changed files with 2 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue