mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Remove the else-clause because the conditions are no longer mutually exclusive.
This commit is contained in:
parent
237b34b074
commit
07351a0449
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue