Commit 07351a04 authored by Raymond Hettinger's avatar Raymond Hettinger

Remove the else-clause because the conditions are no longer mutually exclusive.

parent 237b34b0
...@@ -140,7 +140,7 @@ set_lookkey(PySetObject *so, PyObject *key, Py_hash_t hash) ...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment