mirror of https://github.com/python/cpython.git
Remove the else-clause because the conditions are no longer mutually exclusive.
This commit is contained in:
parent
237b34b074
commit
07351a0449
|
@ -140,7 +140,7 @@ set_lookkey(PySetObject *so, PyObject *key, Py_hash_t hash)
|
|||
return set_lookkey(so, key, hash);
|
||||
}
|
||||
}
|
||||
else if (entry->key == dummy && freeslot == NULL)
|
||||
if (entry->key == dummy && freeslot == NULL)
|
||||
freeslot = entry;
|
||||
}
|
||||
return entry;
|
||||
|
|
Loading…
Reference in New Issue