mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +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);
|
return set_lookkey(so, key, hash);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (entry->key == dummy && freeslot == NULL)
|
if (entry->key == dummy && freeslot == NULL)
|
||||||
freeslot = entry;
|
freeslot = entry;
|
||||||
}
|
}
|
||||||
return entry;
|
return entry;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue