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

This commit is contained in:
Raymond Hettinger 2013-08-17 02:39:46 -07:00
parent 237b34b074
commit 07351a0449
1 changed files with 1 additions and 1 deletions

View File

@ -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;