Kaydet (Commit) 6ba5665f authored tarafından Eric V. Smith's avatar Eric V. Smith

Fix typo in comment.

üst 92b7adb6
...@@ -768,7 +768,7 @@ frozenset_hash(PyObject *self) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment