Kaydet (Commit) a286a51a authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix comment typo

üst 36c05009
...@@ -779,7 +779,7 @@ frozenset_hash(PyObject *self) ...@@ -779,7 +779,7 @@ frozenset_hash(PyObject *self)
for (entry = so->table; entry <= &so->table[so->mask]; entry++) for (entry = so->table; entry <= &so->table[so->mask]; entry++)
hash ^= _shuffle_bits(entry->hash); hash ^= _shuffle_bits(entry->hash);
/* Remove the effect of an odd number NULL entries */ /* Remove the effect of an odd number of NULL entries */
if ((so->mask + 1 - so->fill) & 1) if ((so->mask + 1 - so->fill) & 1)
hash ^= _shuffle_bits(0); hash ^= _shuffle_bits(0);
......
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