mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Fix typo in a comment.
This commit is contained in:
parent
9d4cbcc86b
commit
06a1c8dfa0
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ frozenset_hash(PyObject *self)
|
||||||
hash *= (Py_uhash_t)PySet_GET_SIZE(self) + 1;
|
hash *= (Py_uhash_t)PySet_GET_SIZE(self) + 1;
|
||||||
while (set_next(so, &pos, &entry)) {
|
while (set_next(so, &pos, &entry)) {
|
||||||
/* Work to increase the bit dispersion for closely spaced hash
|
/* Work to increase the bit dispersion for closely spaced hash
|
||||||
values. The is important because some use cases have many
|
values. This is important because some use cases have many
|
||||||
combinations of a small number of elements with nearby
|
combinations of a small number of elements with nearby
|
||||||
hashes so that many distinct combinations collapse to only
|
hashes so that many distinct combinations collapse to only
|
||||||
a handful of distinct hash values. */
|
a handful of distinct hash values. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue