We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36c0500 commit a286a51Copy full SHA for a286a51
1 file changed
Objects/setobject.c
@@ -779,7 +779,7 @@ frozenset_hash(PyObject *self)
779
for (entry = so->table; entry <= &so->table[so->mask]; entry++)
780
hash ^= _shuffle_bits(entry->hash);
781
782
- /* Remove the effect of an odd number NULL entries */
+ /* Remove the effect of an odd number of NULL entries */
783
if ((so->mask + 1 - so->fill) & 1)
784
hash ^= _shuffle_bits(0);
785
0 commit comments