Undo inadvertent line swap

This commit is contained in:
Raymond Hettinger 2015-12-13 19:27:17 -08:00
parent 5088f6005f
commit 86d322f020

View file

@ -282,8 +282,8 @@ set_insert_clean(setentry *table, size_t mask, PyObject *key, Py_hash_t hash)
i = (i * 5 + 1 + perturb) & mask;
}
found_null:
entry->hash = hash;
entry->key = key;
entry->hash = hash;
}
/* ======== End logic for probing the hash table ========================== */