Minor beautification. Put updates and declarations in a more logical order.

This commit is contained in:
Raymond Hettinger 2013-09-21 15:39:49 -07:00
parent a78cccb134
commit 4ef0528b97
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@ set_lookkey(PySetObject *so, PyObject *key, Py_hash_t hash)
size_t perturb = hash;
size_t mask = so->mask;
size_t i = (size_t)hash; /* Unsigned for defined overflow behavior. */
int cmp;
size_t j;
int cmp;
entry = &table[i & mask];
if (entry->key == NULL)
@ -211,9 +211,9 @@ set_insert_clean(PySetObject *so, PyObject *key, Py_hash_t hash)
i = i * 5 + 1 + perturb;
}
found_null:
so->fill++;
entry->key = key;
entry->hash = hash;
so->fill++;
so->used++;
}