From: Raymond Hettinger Date: Sat, 21 Sep 2013 22:39:49 +0000 (-0700) Subject: Minor beautification. Put updates and declarations in a more logical order. X-Git-Tag: v3.4.0a3~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ef0528b97f934a26d04e7956c9320635fa90b8c;p=thirdparty%2FPython%2Fcpython.git Minor beautification. Put updates and declarations in a more logical order. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index 017fcd88db3a..22d9cb35cbe5 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -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++; }