Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 014dd30 commit b9fcfa6Copy full SHA for b9fcfa6
1 file changed
Objects/dictobject.c
@@ -944,6 +944,7 @@ unicodekeys_lookup_unicode(PyDictKeysObject* dk, PyObject *key, Py_hash_t hash)
944
}
945
perturb >>= PERTURB_SHIFT;
946
i = mask & (i*5 + perturb + 1);
947
+ // Manual loop unrolling
948
ix = dictkeys_get_index(dk, i);
949
if (ix >= 0) {
950
PyDictUnicodeEntry *ep = &ep0[ix];
0 commit comments