mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Fix typo in comment.
This commit is contained in:
parent
92b7adb60d
commit
6ba5665fc7
1 changed files with 1 additions and 1 deletions
|
@ -768,7 +768,7 @@ frozenset_hash(PyObject *self)
|
||||||
hash ^= ((h ^ 89869747UL) ^ (h << 16)) * 3644798167UL;
|
hash ^= ((h ^ 89869747UL) ^ (h << 16)) * 3644798167UL;
|
||||||
}
|
}
|
||||||
/* Make the final result spread-out in a different pattern
|
/* Make the final result spread-out in a different pattern
|
||||||
than the algorithem for tuples or other python objects. */
|
than the algorithm for tuples or other python objects. */
|
||||||
hash = hash * 69069U + 907133923UL;
|
hash = hash * 69069U + 907133923UL;
|
||||||
if (hash == -1)
|
if (hash == -1)
|
||||||
hash = 590923713UL;
|
hash = 590923713UL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue