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 92b7adb commit 6ba5665Copy full SHA for 6ba5665
1 file changed
Objects/setobject.c
@@ -768,7 +768,7 @@ frozenset_hash(PyObject *self)
768
hash ^= ((h ^ 89869747UL) ^ (h << 16)) * 3644798167UL;
769
}
770
/* Make the final result spread-out in a different pattern
771
- than the algorithem for tuples or other python objects. */
+ than the algorithm for tuples or other python objects. */
772
hash = hash * 69069U + 907133923UL;
773
if (hash == -1)
774
hash = 590923713UL;
0 commit comments